pro.taskana.workbasket.rest.models.WorkbasketSummaryRepresentationModel Maven / Gradle / Ivy
package pro.taskana.workbasket.rest.models;
import org.springframework.hateoas.RepresentationModel;
import pro.taskana.workbasket.api.WorkbasketType;
import pro.taskana.workbasket.api.models.WorkbasketSummary;
/**
* EntityModel class for {@link WorkbasketSummary}.
*/
public class WorkbasketSummaryRepresentationModel
extends RepresentationModel {
protected String workbasketId;
protected String key;
protected String name;
protected String domain;
protected WorkbasketType type;
protected String description;
protected String owner;
protected String custom1;
protected String custom2;
protected String custom3;
protected String custom4;
protected String orgLevel1;
protected String orgLevel2;
protected String orgLevel3;
protected String orgLevel4;
private boolean markedForDeletion;
public WorkbasketSummaryRepresentationModel() {
}
public WorkbasketSummaryRepresentationModel(WorkbasketSummary workbasketSummary) {
this.workbasketId = workbasketSummary.getId();
this.key = workbasketSummary.getKey();
this.name = workbasketSummary.getName();
this.domain = workbasketSummary.getDomain();
this.type = workbasketSummary.getType();
this.description = workbasketSummary.getDescription();
this.owner = workbasketSummary.getOwner();
this.markedForDeletion = workbasketSummary.isMarkedForDeletion();
this.custom1 = workbasketSummary.getCustom1();
this.custom2 = workbasketSummary.getCustom2();
this.custom3 = workbasketSummary.getCustom3();
this.custom4 = workbasketSummary.getCustom4();
this.orgLevel1 = workbasketSummary.getOrgLevel1();
this.orgLevel2 = workbasketSummary.getOrgLevel2();
this.orgLevel3 = workbasketSummary.getOrgLevel3();
this.orgLevel4 = workbasketSummary.getOrgLevel4();
}
public String getWorkbasketId() {
return workbasketId;
}
public void setWorkbasketId(String workbasketId) {
this.workbasketId = workbasketId;
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDomain() {
return domain;
}
public void setDomain(String domain) {
this.domain = domain;
}
public WorkbasketType getType() {
return type;
}
public void setType(WorkbasketType type) {
this.type = type;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getOwner() {
return owner;
}
public void setOwner(String owner) {
this.owner = owner;
}
public String getCustom1() {
return custom1;
}
public void setCustom1(String custom1) {
this.custom1 = custom1;
}
public String getCustom2() {
return custom2;
}
public void setCustom2(String custom2) {
this.custom2 = custom2;
}
public String getCustom3() {
return custom3;
}
public void setCustom3(String custom3) {
this.custom3 = custom3;
}
public String getCustom4() {
return custom4;
}
public void setCustom4(String custom4) {
this.custom4 = custom4;
}
public String getOrgLevel1() {
return orgLevel1;
}
public void setOrgLevel1(String orgLevel1) {
this.orgLevel1 = orgLevel1;
}
public String getOrgLevel2() {
return orgLevel2;
}
public void setOrgLevel2(String orgLevel2) {
this.orgLevel2 = orgLevel2;
}
public String getOrgLevel3() {
return orgLevel3;
}
public void setOrgLevel3(String orgLevel3) {
this.orgLevel3 = orgLevel3;
}
public String getOrgLevel4() {
return orgLevel4;
}
public void setOrgLevel4(String orgLevel4) {
this.orgLevel4 = orgLevel4;
}
public boolean getMarkedForDeletion() {
return markedForDeletion;
}
public void setMarkedForDeletion(boolean markedForDeletion) {
this.markedForDeletion = markedForDeletion;
}
@Override
public String toString() {
return "WorkbasketSummaryResource ["
+ "workbasketId= "
+ this.workbasketId
+ "key= "
+ this.key
+ "name= "
+ this.name
+ "domain= "
+ this.domain
+ "type= "
+ this.type
+ "owner= "
+ this.owner
+ "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy