org.acme.travels.Approvals_3_TaskInput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of process-usertasks-with-security-springboot
Show all versions of process-usertasks-with-security-springboot
Kogito usertasks orchestration with security enabled on REST api - Spring Boot
package org.acme.travels;
import java.util.Map;
public class Approvals_3_TaskInput {
private String _id;
private String _name;
public void setId(String id) {
this._id = id;
}
public String getId() {
return this._id;
}
public void setName(String name) {
this._name = name;
}
public String getName() {
return this._name;
}
public static Approvals_3_TaskInput fromMap(String id, String name, Map params) {
Approvals_3_TaskInput item = new Approvals_3_TaskInput();
item._id = id;
item._name = name;
item.traveller = (org.acme.travels.Traveller) params.get("traveller");
return item;
}
private org.acme.travels.Traveller traveller;
public org.acme.travels.Traveller getTraveller() {
return traveller;
}
public void setTraveller(org.acme.travels.Traveller traveller) {
this.traveller = traveller;
}
}
// Task input model for user task 'First Line approval' in process 'approvals'
© 2015 - 2025 Weber Informatics LLC | Privacy Policy