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

com.sforce.soap.tooling.metadata.ApexPage Maven / Gradle / Ivy

The newest version!

package com.sforce.soap.tooling.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 ApexPage complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="ApexPage">
 *   <complexContent>
 *     <extension base="{urn:metadata.tooling.soap.sforce.com}Metadata">
 *       <sequence>
 *         <element name="apiVersion" type="{http://www.w3.org/2001/XMLSchema}double"/>
 *         <element name="availableInTouch" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="confirmationTokenRequired" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="label" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="packageVersions" type="{urn:metadata.tooling.soap.sforce.com}PackageVersion" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ApexPage", propOrder = { "apiVersion", "availableInTouch", "confirmationTokenRequired", "description", "label", "packageVersions" }) public class ApexPage extends Metadata { protected double apiVersion; protected Boolean availableInTouch; protected Boolean confirmationTokenRequired; protected String description; @XmlElement(required = true) protected String label; protected List packageVersions; /** * Gets the value of the apiVersion property. * */ public double getApiVersion() { return apiVersion; } /** * Sets the value of the apiVersion property. * */ public void setApiVersion(double value) { this.apiVersion = value; } /** * Gets the value of the availableInTouch property. * * @return * possible object is * {@link Boolean } * */ public Boolean isAvailableInTouch() { return availableInTouch; } /** * Sets the value of the availableInTouch property. * * @param value * allowed object is * {@link Boolean } * */ public void setAvailableInTouch(Boolean value) { this.availableInTouch = value; } /** * Gets the value of the confirmationTokenRequired property. * * @return * possible object is * {@link Boolean } * */ public Boolean isConfirmationTokenRequired() { return confirmationTokenRequired; } /** * Sets the value of the confirmationTokenRequired property. * * @param value * allowed object is * {@link Boolean } * */ public void setConfirmationTokenRequired(Boolean value) { this.confirmationTokenRequired = 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 label property. * * @return * possible object is * {@link String } * */ public String getLabel() { return label; } /** * Sets the value of the label property. * * @param value * allowed object is * {@link String } * */ public void setLabel(String value) { this.label = value; } /** * Gets the value of the packageVersions 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 packageVersions property. * *

* For example, to add a new item, do as follows: *

     *    getPackageVersions().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link PackageVersion } * * */ public List getPackageVersions() { if (packageVersions == null) { packageVersions = new ArrayList(); } return this.packageVersions; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy