All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.inteligr8.alfresco.activiti.model.ShareInfoRequest Maven / Gradle / Ivy

Go to download

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;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy