org.camunda.bpm.engine.impl.GetDeployedTaskFormCmd Maven / Gradle / Ivy
package org.camunda.bpm.engine.impl;
import java.util.concurrent.Callable;
import org.camunda.bpm.engine.BadUserRequestException;
import org.camunda.bpm.engine.form.FormData;
import org.camunda.bpm.engine.impl.cfg.CommandChecker;
import org.camunda.bpm.engine.impl.cmd.AbstractGetDeployedFormCmd;
import org.camunda.bpm.engine.impl.cmd.GetTaskFormCmd;
import org.camunda.bpm.engine.impl.interceptor.CommandContext;
import org.camunda.bpm.engine.impl.persistence.entity.TaskEntity;
import org.camunda.bpm.engine.impl.util.EnsureUtil;
/**
*
* @author Anna Pazola
*
*/
public class GetDeployedTaskFormCmd extends AbstractGetDeployedFormCmd {
protected String taskId;
public GetDeployedTaskFormCmd(String taskId) {
EnsureUtil.ensureNotNull(BadUserRequestException.class, "Task id cannot be null", "taskId", taskId);
this.taskId = taskId;
}
@Override
protected FormData getFormData(final CommandContext commandContext) {
return commandContext.runWithoutAuthorization(new Callable() {
@Override
public FormData call() throws Exception {
return new GetTaskFormCmd(taskId).execute(commandContext);
}
});
}
@Override
protected void checkAuthorization(CommandContext commandContext) {
TaskEntity taskEntity = commandContext.getTaskManager().findTaskById(taskId);
for (CommandChecker checker : commandContext.getProcessEngineConfiguration().getCommandCheckers()) {
checker.checkReadTask(taskEntity);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy