All the methods should be supported.. most of them should be simple redirections from the TaskOperation(WS-HT spec) to the drools/jbpm5 interfaces.
You can start with simple ones if you want..
https://github.com/Salaboy/smart-tasks/blob/master/smart-tasks-jbpm5-impl/src/main/java/com/wordpress/salaboy/smarttasks/jbpm5wrapper/JBPM5HumanTaskServiceOperations.java
All the unsupported methods should be supported in one way or another.
Do you want a prioritized list of methods to implement?
public List<TTask> getMyTasks(String taskType, String genericHumanRole, String workQueue, List<TStatus> status, String whereClause, String orderByClause, String createdOnClause, Integer maxTasks, Integer fromTaskNumber) throws IllegalArgumentFault, IllegalStateFault {
public void addComment(String identifier, String text) throws IllegalArgumentFault, IllegalStateFault, IllegalAccessFault {
public void remove(String identifier) throws IllegalArgumentFault, IllegalAccessFault {
public TTaskQueryResultSet query(String selectClause, String whereClause, String orderByClause, Integer maxTasks, Integer taskIndexOffset) throws IllegalArgumentFault, IllegalStateFault {
public void deleteAttachments(String identifier, String attachmentName) throws IllegalArgumentFault, IllegalStateFault, IllegalAccessFault {
That methods sounds interesting to make first.
Greetings.