Hi, which version of jBPM5 are you using?
Did you check the org.jbpm.task.TaskService interface that contains all the method available to interact?
void fail(long taskId, String userId, FaultData faultData);
void release(long taskId, String userId);
void remove(long taskId, String userId);
void skip(long taskId, String userId);
Cheers