
com.palominolabs.crm.sf.soap.jaxwsstub.metadata.Package Maven / Gradle / Ivy
package com.palominolabs.crm.sf.soap.jaxwsstub.metadata;
import java.util.ArrayList;
import java.util.List;
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 Package complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Package">
* <complexContent>
* <extension base="{http://soap.sforce.com/2006/04/metadata}Metadata">
* <sequence>
* <element name="apiAccessLevel" type="{http://soap.sforce.com/2006/04/metadata}APIAccessLevel" minOccurs="0"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="namespacePrefix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="objectPermissions" type="{http://soap.sforce.com/2006/04/metadata}ProfileObjectPermissions" maxOccurs="unbounded" minOccurs="0"/>
* <element name="postInstallClass" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="setupWeblink" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="types" type="{http://soap.sforce.com/2006/04/metadata}PackageTypeMembers" maxOccurs="unbounded" minOccurs="0"/>
* <element name="uninstallClass" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="version" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Package", propOrder = {
"apiAccessLevel",
"description",
"namespacePrefix",
"objectPermissions",
"postInstallClass",
"setupWeblink",
"types",
"uninstallClass",
"version"
})
public class Package
extends Metadata
{
protected APIAccessLevel apiAccessLevel;
protected String description;
protected String namespacePrefix;
protected List objectPermissions;
protected String postInstallClass;
protected String setupWeblink;
protected List types;
protected String uninstallClass;
@XmlElement(required = true)
protected String version;
/**
* Gets the value of the apiAccessLevel property.
*
* @return
* possible object is
* {@link APIAccessLevel }
*
*/
public APIAccessLevel getApiAccessLevel() {
return apiAccessLevel;
}
/**
* Sets the value of the apiAccessLevel property.
*
* @param value
* allowed object is
* {@link APIAccessLevel }
*
*/
public void setApiAccessLevel(APIAccessLevel value) {
this.apiAccessLevel = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
/**
* Gets the value of the namespacePrefix property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNamespacePrefix() {
return namespacePrefix;
}
/**
* Sets the value of the namespacePrefix property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNamespacePrefix(String value) {
this.namespacePrefix = value;
}
/**
* Gets the value of the objectPermissions property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the objectPermissions property.
*
*
* For example, to add a new item, do as follows:
*
* getObjectPermissions().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ProfileObjectPermissions }
*
*
*/
public List getObjectPermissions() {
if (objectPermissions == null) {
objectPermissions = new ArrayList();
}
return this.objectPermissions;
}
/**
* Gets the value of the postInstallClass property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPostInstallClass() {
return postInstallClass;
}
/**
* Sets the value of the postInstallClass property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPostInstallClass(String value) {
this.postInstallClass = value;
}
/**
* Gets the value of the setupWeblink property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSetupWeblink() {
return setupWeblink;
}
/**
* Sets the value of the setupWeblink property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSetupWeblink(String value) {
this.setupWeblink = value;
}
/**
* Gets the value of the types property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the types property.
*
*
* For example, to add a new item, do as follows:
*
* getTypes().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link PackageTypeMembers }
*
*
*/
public List getTypes() {
if (types == null) {
types = new ArrayList();
}
return this.types;
}
/**
* Gets the value of the uninstallClass property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUninstallClass() {
return uninstallClass;
}
/**
* Sets the value of the uninstallClass property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUninstallClass(String value) {
this.uninstallClass = value;
}
/**
* Gets the value of the version property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersion() {
return version;
}
/**
* Sets the value of the version property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersion(String value) {
this.version = value;
}
}