
com.palominolabs.crm.sf.soap.jaxwsstub.metadata.RemoteSiteSetting 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 RemoteSiteSetting complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RemoteSiteSetting">
* <complexContent>
* <extension base="{http://soap.sforce.com/2006/04/metadata}Metadata">
* <sequence>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="disableProtocolSecurity" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="isActive" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RemoteSiteSetting", propOrder = {
"description",
"disableProtocolSecurity",
"isActive",
"url"
})
public class RemoteSiteSetting
extends Metadata
{
protected String description;
protected boolean disableProtocolSecurity;
protected boolean isActive;
@XmlElement(required = true)
protected String url;
/**
* 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 disableProtocolSecurity property.
*
*/
public boolean isDisableProtocolSecurity() {
return disableProtocolSecurity;
}
/**
* Sets the value of the disableProtocolSecurity property.
*
*/
public void setDisableProtocolSecurity(boolean value) {
this.disableProtocolSecurity = value;
}
/**
* Gets the value of the isActive property.
*
*/
public boolean isIsActive() {
return isActive;
}
/**
* Sets the value of the isActive property.
*
*/
public void setIsActive(boolean value) {
this.isActive = 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 - 2025 Weber Informatics LLC | Privacy Policy