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

com.sforce.soap.tooling.ActionOverride Maven / Gradle / Ivy

The newest version!

package com.sforce.soap.tooling;

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 ActionOverride complex type. * *

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

 * <complexType name="ActionOverride">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="isAvailableInTouch" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="pageId" type="{urn:tooling.soap.sforce.com}ID"/>
 *         <element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ActionOverride", propOrder = { "isAvailableInTouch", "name", "pageId", "url" }) public class ActionOverride { protected boolean isAvailableInTouch; @XmlElement(required = true) protected String name; @XmlElement(required = true) protected String pageId; @XmlElement(required = true) protected String url; /** * Gets the value of the isAvailableInTouch property. * */ public boolean isIsAvailableInTouch() { return isAvailableInTouch; } /** * Sets the value of the isAvailableInTouch property. * */ public void setIsAvailableInTouch(boolean value) { this.isAvailableInTouch = 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 pageId property. * * @return * possible object is * {@link String } * */ public String getPageId() { return pageId; } /** * Sets the value of the pageId property. * * @param value * allowed object is * {@link String } * */ public void setPageId(String value) { this.pageId = value; } /** * Gets the value of the url property. * * @return * possible object is * {@link String } * */ public String getUrl() { return url; } /** * Sets the value of the url property. * * @param value * allowed object is * {@link String } * */ public void setUrl(String value) { this.url = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy