/* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.activiti.rest.api.cycle;
import java.util.Date;
import java.util.Map;
import org.activiti.rest.util.ActivitiRequest;
import org.activiti.rest.util.ActivitiRequestObject;
import org.springframework.extensions.webscripts.Cache;
import org.springframework.extensions.webscripts.Status;
/**
* @author Nils Preusker (nils.preusker@camunda.com)
*/
public class CommentPost extends ActivitiCycleWebScript {
@Override
void execute(ActivitiRequest req, Status status, Cache cache, Map<String, Object> model) {
ActivitiRequestObject obj = req.getBody();
String connectorId = req.getMandatoryString(obj, "connectorId");
String nodeId = req.getMandatoryString(obj, "nodeId");
String content = req.getMandatoryString(obj, "content");
String elementId = req.getOptionalString(obj, "elementId");
String answeredCommentId = req.getOptionalString(obj, "answeredCommentId");
String author = req.getCurrentUserId();
Date date = new Date();
this.commentService.insertComment(connectorId, nodeId, elementId, content, author, date, answeredCommentId);
}
}