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

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

Go to download

An APS API library for building REST API clients that support both the CXF and Jersey frameworks

There is a newer version: 3.0.4
Show newest version
package com.inteligr8.alfresco.activiti.model;

import java.time.OffsetDateTime;

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 SharePermission extends Permission {
	
	@JsonProperty
	private OffsetDateTime shareDate;
	@JsonProperty
	private Long sharedBy;
	
	public OffsetDateTime getShareDate() {
		return shareDate;
	}
	
	public void setShareDate(OffsetDateTime shareDate) {
		this.shareDate = shareDate;
	}
	
	public Long getSharedBy() {
		return sharedBy;
	}
	
	public void setSharedBy(Long sharedBy) {
		this.sharedBy = sharedBy;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy