
com.palominolabs.crm.sf.soap.jaxwsstub.metadata.CustomObjectOwnerSharingRule 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 CustomObjectOwnerSharingRule complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CustomObjectOwnerSharingRule">
* <complexContent>
* <extension base="{http://soap.sforce.com/2006/04/metadata}OwnerSharingRule">
* <sequence>
* <element name="accessLevel" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CustomObjectOwnerSharingRule", propOrder = {
"accessLevel",
"name"
})
public class CustomObjectOwnerSharingRule
extends OwnerSharingRule
{
@XmlElement(required = true)
protected String accessLevel;
@XmlElement(required = true)
protected String name;
/**
* Gets the value of the accessLevel property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAccessLevel() {
return accessLevel;
}
/**
* Sets the value of the accessLevel property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAccessLevel(String value) {
this.accessLevel = 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy