com.inteligr8.alfresco.activiti.model.ShareInfoRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aps-public-rest-api Show documentation
Show all versions of aps-public-rest-api Show documentation
An APS API library for building REST API clients that support both the CXF and Jersey frameworks
The newest version!
package com.inteligr8.alfresco.activiti.model;
import java.util.LinkedList;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class ShareInfoRequest {
@JsonProperty
private List added = new LinkedList<>();
@JsonProperty
private List removed = new LinkedList<>();
@JsonProperty
private List updated = new LinkedList<>();
public List getAdded() {
return added;
}
public void setAdded(List added) {
this.added = added;
}
public List getRemoved() {
return removed;
}
public void setRemoved(List removed) {
this.removed = removed;
}
public List getUpdated() {
return updated;
}
public void setUpdated(List updated) {
this.updated = updated;
}
}