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

com.citrix.sharefile.api.models.SFDlpPolicy Maven / Gradle / Ivy


// ------------------------------------------------------------------------------
// 
//     This code was generated by a tool.
//  
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated.
//     
//	   Copyright (c) 2017 Citrix ShareFile. All rights reserved.
// 
// ------------------------------------------------------------------------------

package com.citrix.sharefile.api.models;

import java.io.InputStream;
import java.util.ArrayList;
import java.net.URI;
import java.util.Date;
import java.util.Map;
import java.util.HashMap;

import com.google.gson.annotations.SerializedName;
import com.citrix.sharefile.api.*;
import com.citrix.sharefile.api.enumerations.*;
import com.citrix.sharefile.api.models.*;

public class SFDlpPolicy extends SFODataObject {

	@SerializedName("Name")
	private String Name;
	@SerializedName("Description")
	private String Description;
	@SerializedName("Status")
	private SFSafeEnum Status;
	@SerializedName("AnonymousUserCanDownload")
	private Boolean AnonymousUserCanDownload;
	@SerializedName("ClientUserCanDownload")
	private Boolean ClientUserCanDownload;
	@SerializedName("ClientUserCanShare")
	private Boolean ClientUserCanShare;
	@SerializedName("EmployeeUserCanDownload")
	private Boolean EmployeeUserCanDownload;
	@SerializedName("EmployeeUserCanShare")
	private Boolean EmployeeUserCanShare;

		/**
		* Localized display name of this policy.
		*/
	public String getName() {
		return this.Name;
	}

		/**
		* Localized display name of this policy.
		*/
	public void setName(String name) {
		this.Name = name;
	}
		/**
		* Localized description of this policy.
		*/
	public String getDescription() {
		return this.Description;
	}

		/**
		* Localized description of this policy.
		*/
	public void setDescription(String description) {
		this.Description = description;
	}
		/**
		* File scan status associated with this policy.
		*/
	public SFSafeEnum getStatus() {
		return this.Status;
	}

		/**
		* File scan status associated with this policy.
		*/
	public void setStatus(SFSafeEnum status) {
		this.Status = status;
	}
		/**
		* If true, anonymous share recipients can download Items which have this policy.
		*/
	public Boolean getAnonymousUserCanDownload() {
		return this.AnonymousUserCanDownload;
	}

		/**
		* If true, anonymous share recipients can download Items which have this policy.
		*/
	public void setAnonymousUserCanDownload(Boolean anonymoususercandownload) {
		this.AnonymousUserCanDownload = anonymoususercandownload;
	}
		/**
		* If true, Client users can download Items which have this policy.
		*/
	public Boolean getClientUserCanDownload() {
		return this.ClientUserCanDownload;
	}

		/**
		* If true, Client users can download Items which have this policy.
		*/
	public void setClientUserCanDownload(Boolean clientusercandownload) {
		this.ClientUserCanDownload = clientusercandownload;
	}
		/**
		* If true, Client users can share Items which have this policy.
		*/
	public Boolean getClientUserCanShare() {
		return this.ClientUserCanShare;
	}

		/**
		* If true, Client users can share Items which have this policy.
		*/
	public void setClientUserCanShare(Boolean clientusercanshare) {
		this.ClientUserCanShare = clientusercanshare;
	}
		/**
		* If true, Employee users can download Items which have this policy.
		*/
	public Boolean getEmployeeUserCanDownload() {
		return this.EmployeeUserCanDownload;
	}

		/**
		* If true, Employee users can download Items which have this policy.
		*/
	public void setEmployeeUserCanDownload(Boolean employeeusercandownload) {
		this.EmployeeUserCanDownload = employeeusercandownload;
	}
		/**
		* If true, Employee users can share Items which have this policy.
		*/
	public Boolean getEmployeeUserCanShare() {
		return this.EmployeeUserCanShare;
	}

		/**
		* If true, Employee users can share Items which have this policy.
		*/
	public void setEmployeeUserCanShare(Boolean employeeusercanshare) {
		this.EmployeeUserCanShare = employeeusercanshare;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy