
com.palominolabs.crm.sf.soap.jaxwsstub.metadata.ChatterMobileSettings 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.XmlType;
/**
* Java class for ChatterMobileSettings complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ChatterMobileSettings">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="androidAuthorized" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="blackberryAuthorized" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="enableChatterMobile" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="enablePushNotifications" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="iPadAuthorized" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="iPhoneAuthorized" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="sessionTimeout" type="{http://soap.sforce.com/2006/04/metadata}MobileSessionTimeout" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ChatterMobileSettings", propOrder = {
"androidAuthorized",
"blackberryAuthorized",
"enableChatterMobile",
"enablePushNotifications",
"iPadAuthorized",
"iPhoneAuthorized",
"sessionTimeout"
})
public class ChatterMobileSettings {
protected Boolean androidAuthorized;
protected Boolean blackberryAuthorized;
protected Boolean enableChatterMobile;
protected Boolean enablePushNotifications;
protected Boolean iPadAuthorized;
protected Boolean iPhoneAuthorized;
protected MobileSessionTimeout sessionTimeout;
/**
* Gets the value of the androidAuthorized property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isAndroidAuthorized() {
return androidAuthorized;
}
/**
* Sets the value of the androidAuthorized property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setAndroidAuthorized(Boolean value) {
this.androidAuthorized = value;
}
/**
* Gets the value of the blackberryAuthorized property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isBlackberryAuthorized() {
return blackberryAuthorized;
}
/**
* Sets the value of the blackberryAuthorized property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setBlackberryAuthorized(Boolean value) {
this.blackberryAuthorized = value;
}
/**
* Gets the value of the enableChatterMobile property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isEnableChatterMobile() {
return enableChatterMobile;
}
/**
* Sets the value of the enableChatterMobile property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setEnableChatterMobile(Boolean value) {
this.enableChatterMobile = value;
}
/**
* Gets the value of the enablePushNotifications property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isEnablePushNotifications() {
return enablePushNotifications;
}
/**
* Sets the value of the enablePushNotifications property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setEnablePushNotifications(Boolean value) {
this.enablePushNotifications = value;
}
/**
* Gets the value of the iPadAuthorized property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIPadAuthorized() {
return iPadAuthorized;
}
/**
* Sets the value of the iPadAuthorized property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIPadAuthorized(Boolean value) {
this.iPadAuthorized = value;
}
/**
* Gets the value of the iPhoneAuthorized property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIPhoneAuthorized() {
return iPhoneAuthorized;
}
/**
* Sets the value of the iPhoneAuthorized property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIPhoneAuthorized(Boolean value) {
this.iPhoneAuthorized = value;
}
/**
* Gets the value of the sessionTimeout property.
*
* @return
* possible object is
* {@link MobileSessionTimeout }
*
*/
public MobileSessionTimeout getSessionTimeout() {
return sessionTimeout;
}
/**
* Sets the value of the sessionTimeout property.
*
* @param value
* allowed object is
* {@link MobileSessionTimeout }
*
*/
public void setSessionTimeout(MobileSessionTimeout value) {
this.sessionTimeout = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy