Class TaskVariableControllerImpl

  • All Implemented Interfaces:
    org.activiti.cloud.services.rest.api.TaskVariableController

    @RestController
    public class TaskVariableControllerImpl
    extends java.lang.Object
    implements org.activiti.cloud.services.rest.api.TaskVariableController
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      org.springframework.http.ResponseEntity<java.lang.Void> createVariable​(java.lang.String taskId, org.activiti.api.task.model.payloads.CreateTaskVariablePayload createTaskVariablePayload)  
      org.springframework.hateoas.Resources<org.springframework.hateoas.Resource<org.activiti.cloud.api.model.shared.CloudVariableInstance>> getVariables​(java.lang.String taskId)  
      org.springframework.http.ResponseEntity<java.lang.Void> updateVariable​(java.lang.String taskId, java.lang.String variableName, org.activiti.api.task.model.payloads.UpdateTaskVariablePayload updateTaskVariablePayload)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getVariables

        public org.springframework.hateoas.Resources<org.springframework.hateoas.Resource<org.activiti.cloud.api.model.shared.CloudVariableInstance>> getVariables​(@PathVariable
                                                                                                                                                                   java.lang.String taskId)
        Specified by:
        getVariables in interface org.activiti.cloud.services.rest.api.TaskVariableController
      • createVariable

        public org.springframework.http.ResponseEntity<java.lang.Void> createVariable​(@PathVariable
                                                                                      java.lang.String taskId,
                                                                                      @RequestBody
                                                                                      org.activiti.api.task.model.payloads.CreateTaskVariablePayload createTaskVariablePayload)
        Specified by:
        createVariable in interface org.activiti.cloud.services.rest.api.TaskVariableController
      • updateVariable

        public org.springframework.http.ResponseEntity<java.lang.Void> updateVariable​(@PathVariable
                                                                                      java.lang.String taskId,
                                                                                      @PathVariable
                                                                                      java.lang.String variableName,
                                                                                      @RequestBody
                                                                                      org.activiti.api.task.model.payloads.UpdateTaskVariablePayload updateTaskVariablePayload)
        Specified by:
        updateVariable in interface org.activiti.cloud.services.rest.api.TaskVariableController