Java Code Examples for com.fasterxml.jackson.annotation.JsonTypeInfo.Id#CLASS

The following examples show how to use com.fasterxml.jackson.annotation.JsonTypeInfo.Id#CLASS . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ExecutionActionRequest.java    From flowable-engine with Apache License 2.0 4 votes vote down vote up
@JsonTypeInfo(use = Id.CLASS, defaultImpl = RestVariable.class)
public List<RestVariable> getTransientVariables() {
    return transientVariables;
}
 
Example 2
Source File: PlanItemInstanceQueryRequest.java    From flowable-engine with Apache License 2.0 4 votes vote down vote up
@JsonTypeInfo(use = Id.CLASS, defaultImpl = QueryVariable.class)
public void setCaseInstanceVariables(List<QueryVariable> caseInstanceVariables) {
    this.caseInstanceVariables = caseInstanceVariables;
}
 
Example 3
Source File: TaskActionRequest.java    From flowable-engine with Apache License 2.0 4 votes vote down vote up
@ApiModelProperty(value = "If action is complete, you can use this parameter to set variables ")
@JsonTypeInfo(use = Id.CLASS, defaultImpl = RestVariable.class)
public List<RestVariable> getVariables() {
    return variables;
}
 
Example 4
Source File: HistoricProcessInstanceQueryRequest.java    From activiti6-boot2 with Apache License 2.0 4 votes vote down vote up
@JsonTypeInfo(use = Id.CLASS, defaultImpl = QueryVariable.class)
public List<QueryVariable> getVariables() {
  return variables;
}
 
Example 5
Source File: HistoricTaskInstanceQueryRequest.java    From activiti6-boot2 with Apache License 2.0 4 votes vote down vote up
@JsonTypeInfo(use = Id.CLASS, defaultImpl = QueryVariable.class)
public List<QueryVariable> getProcessVariables() {
  return processVariables;
}
 
Example 6
Source File: HistoricTaskInstanceQueryRequest.java    From activiti6-boot2 with Apache License 2.0 4 votes vote down vote up
@JsonTypeInfo(use = Id.CLASS, defaultImpl = QueryVariable.class)
public List<QueryVariable> getTaskVariables() {
  return taskVariables;
}
 
Example 7
Source File: SubmitFormRequest.java    From flowable-engine with Apache License 2.0 4 votes vote down vote up
@JsonTypeInfo(use = Id.CLASS, defaultImpl = RestFormProperty.class)
public List<RestFormProperty> getProperties() {
    return properties;
}
 
Example 8
Source File: TaskQueryRequest.java    From flowable-engine with Apache License 2.0 4 votes vote down vote up
@JsonTypeInfo(use = Id.CLASS, defaultImpl = QueryVariable.class)
public List<QueryVariable> getProcessInstanceVariables() {
    return processInstanceVariables;
}
 
Example 9
Source File: ProcessInstanceQueryRequest.java    From flowable-engine with Apache License 2.0 4 votes vote down vote up
@JsonTypeInfo(use = Id.CLASS, defaultImpl = QueryVariable.class)
public List<QueryVariable> getVariables() {
    return variables;
}
 
Example 10
Source File: TaskQueryRequest.java    From activiti6-boot2 with Apache License 2.0 4 votes vote down vote up
@JsonTypeInfo(use = Id.CLASS, defaultImpl = QueryVariable.class)
public List<QueryVariable> getProcessInstanceVariables() {
  return processInstanceVariables;
}
 
Example 11
Source File: ServiceInstance.java    From xian with Apache License 2.0 4 votes vote down vote up
@JsonTypeInfo(use=Id.CLASS, defaultImpl=Object.class)
public T getPayload()
{
    return payload;
}
 
Example 12
Source File: CaseInstanceQueryRequest.java    From flowable-engine with Apache License 2.0 4 votes vote down vote up
@JsonTypeInfo(use = Id.CLASS, defaultImpl = QueryVariable.class)
public List<QueryVariable> getVariables() {
    return variables;
}
 
Example 13
Source File: ExecutionQueryRequest.java    From activiti6-boot2 with Apache License 2.0 4 votes vote down vote up
@JsonTypeInfo(use = Id.CLASS, defaultImpl = QueryVariable.class)
public List<QueryVariable> getVariables() {
  return variables;
}
 
Example 14
Source File: SignalEventReceivedRequest.java    From flowable-engine with Apache License 2.0 4 votes vote down vote up
@JsonTypeInfo(use = Id.CLASS, defaultImpl = RestVariable.class)
@ApiModelProperty(value = "Array of variables (in the general variables format) to use as payload to pass along with the signal. Cannot be used in case async is set to true, this will result in an error.")
public List<RestVariable> getVariables() {
    return variables;
}
 
Example 15
Source File: ExecutionActionRequest.java    From activiti6-boot2 with Apache License 2.0 4 votes vote down vote up
@JsonTypeInfo(use = Id.CLASS, defaultImpl = RestVariable.class)
public List<RestVariable> getVariables() {
  return variables;
}
 
Example 16
Source File: HistoricProcessInstanceQueryRequest.java    From flowable-engine with Apache License 2.0 4 votes vote down vote up
@JsonTypeInfo(use = Id.CLASS, defaultImpl = QueryVariable.class)
public List<QueryVariable> getVariables() {
    return variables;
}
 
Example 17
Source File: CaseInstanceCreateRequest.java    From flowable-engine with Apache License 2.0 4 votes vote down vote up
@JsonTypeInfo(use = Id.CLASS, defaultImpl = RestVariable.class)
public List<RestVariable> getVariables() {
    return variables;
}
 
Example 18
Source File: SignalEventReceivedRequest.java    From activiti6-boot2 with Apache License 2.0 4 votes vote down vote up
@JsonTypeInfo(use = Id.CLASS, defaultImpl = RestVariable.class)
@ApiModelProperty(value ="Array of variables (in the general variables format) to use as payload to pass along with the signal. Cannot be used in case async is set to true, this will result in an error.")
public List<RestVariable> getVariables() {
  return variables;
}
 
Example 19
Source File: ProcessInstanceQueryRequest.java    From activiti6-boot2 with Apache License 2.0 4 votes vote down vote up
@JsonTypeInfo(use = Id.CLASS, defaultImpl = QueryVariable.class)
public List<QueryVariable> getVariables() {
  return variables;
}
 
Example 20
Source File: HistoricVariableInstanceQueryRequest.java    From flowable-engine with Apache License 2.0 4 votes vote down vote up
@JsonTypeInfo(use = Id.CLASS, defaultImpl = QueryVariable.class)
public List<QueryVariable> getVariables() {
    return variables;
}