
com.palominolabs.crm.sf.soap.jaxwsstub.metadata.AccountCriteriaBasedSharingRule Maven / Gradle / Ivy
The newest version!
package com.palominolabs.crm.sf.soap.jaxwsstub.metadata;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for AccountCriteriaBasedSharingRule complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AccountCriteriaBasedSharingRule">
* <complexContent>
* <extension base="{http://soap.sforce.com/2006/04/metadata}CriteriaBasedSharingRule">
* <sequence>
* <element name="accountAccessLevel" type="{http://soap.sforce.com/2006/04/metadata}ShareAccessLevelNoNone"/>
* <element name="booleanFilter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="caseAccessLevel" type="{http://soap.sforce.com/2006/04/metadata}ShareAccessLevelNoAll"/>
* <element name="contactAccessLevel" type="{http://soap.sforce.com/2006/04/metadata}ShareAccessLevelNoAll"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="opportunityAccessLevel" type="{http://soap.sforce.com/2006/04/metadata}ShareAccessLevelNoAll"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AccountCriteriaBasedSharingRule", propOrder = {
"accountAccessLevel",
"booleanFilter",
"caseAccessLevel",
"contactAccessLevel",
"name",
"opportunityAccessLevel"
})
public class AccountCriteriaBasedSharingRule
extends CriteriaBasedSharingRule
{
@XmlElement(required = true)
protected ShareAccessLevelNoNone accountAccessLevel;
protected String booleanFilter;
@XmlElement(required = true)
protected ShareAccessLevelNoAll caseAccessLevel;
@XmlElement(required = true)
protected ShareAccessLevelNoAll contactAccessLevel;
@XmlElement(required = true)
protected String name;
@XmlElement(required = true)
protected ShareAccessLevelNoAll opportunityAccessLevel;
/**
* Gets the value of the accountAccessLevel property.
*
* @return
* possible object is
* {@link ShareAccessLevelNoNone }
*
*/
public ShareAccessLevelNoNone getAccountAccessLevel() {
return accountAccessLevel;
}
/**
* Sets the value of the accountAccessLevel property.
*
* @param value
* allowed object is
* {@link ShareAccessLevelNoNone }
*
*/
public void setAccountAccessLevel(ShareAccessLevelNoNone value) {
this.accountAccessLevel = value;
}
/**
* Gets the value of the booleanFilter property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBooleanFilter() {
return booleanFilter;
}
/**
* Sets the value of the booleanFilter property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBooleanFilter(String value) {
this.booleanFilter = value;
}
/**
* Gets the value of the caseAccessLevel property.
*
* @return
* possible object is
* {@link ShareAccessLevelNoAll }
*
*/
public ShareAccessLevelNoAll getCaseAccessLevel() {
return caseAccessLevel;
}
/**
* Sets the value of the caseAccessLevel property.
*
* @param value
* allowed object is
* {@link ShareAccessLevelNoAll }
*
*/
public void setCaseAccessLevel(ShareAccessLevelNoAll value) {
this.caseAccessLevel = value;
}
/**
* Gets the value of the contactAccessLevel property.
*
* @return
* possible object is
* {@link ShareAccessLevelNoAll }
*
*/
public ShareAccessLevelNoAll getContactAccessLevel() {
return contactAccessLevel;
}
/**
* Sets the value of the contactAccessLevel property.
*
* @param value
* allowed object is
* {@link ShareAccessLevelNoAll }
*
*/
public void setContactAccessLevel(ShareAccessLevelNoAll value) {
this.contactAccessLevel = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the opportunityAccessLevel property.
*
* @return
* possible object is
* {@link ShareAccessLevelNoAll }
*
*/
public ShareAccessLevelNoAll getOpportunityAccessLevel() {
return opportunityAccessLevel;
}
/**
* Sets the value of the opportunityAccessLevel property.
*
* @param value
* allowed object is
* {@link ShareAccessLevelNoAll }
*
*/
public void setOpportunityAccessLevel(ShareAccessLevelNoAll value) {
this.opportunityAccessLevel = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy