
com.palominolabs.crm.sf.soap.jaxwsstub.metadata.DataSourceSettings 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 DataSourceSettings complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DataSourceSettings">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="enableQuantity" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="enableRevenue" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DataSourceSettings", propOrder = {
"enableQuantity",
"enableRevenue"
})
public class DataSourceSettings {
protected boolean enableQuantity;
protected boolean enableRevenue;
/**
* Gets the value of the enableQuantity property.
*
*/
public boolean isEnableQuantity() {
return enableQuantity;
}
/**
* Sets the value of the enableQuantity property.
*
*/
public void setEnableQuantity(boolean value) {
this.enableQuantity = value;
}
/**
* Gets the value of the enableRevenue property.
*
*/
public boolean isEnableRevenue() {
return enableRevenue;
}
/**
* Sets the value of the enableRevenue property.
*
*/
public void setEnableRevenue(boolean value) {
this.enableRevenue = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy