cn.lzgabel.converter.bean.task.ManualTaskDefinition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camunda-cloud-bpmn-converter Show documentation
Show all versions of camunda-cloud-bpmn-converter Show documentation
Convert json to bpmn for Camunda Cloud.
The newest version!
package cn.lzgabel.converter.bean.task;
import cn.lzgabel.converter.bean.BaseDefinition;
import cn.lzgabel.converter.bean.BpmnElementType;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
/**
* 〈功能简述〉
* 〈〉
*
* @author lizhi
* @since 1.0.0
*/
@Data
@SuperBuilder
@NoArgsConstructor
public class ManualTaskDefinition extends BaseDefinition {
@Override
public String getNodeType() {
return BpmnElementType.MANUAL_TASK.getElementTypeName().get();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy