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

com.palominolabs.crm.sf.soap.jaxwsstub.apex.AllOrNoneHeader Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version

package com.palominolabs.crm.sf.soap.jaxwsstub.apex;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="allOrNone" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "allOrNone" }) @XmlRootElement(name = "AllOrNoneHeader") public class AllOrNoneHeader { protected boolean allOrNone; /** * Gets the value of the allOrNone property. * */ public boolean isAllOrNone() { return allOrNone; } /** * Sets the value of the allOrNone property. * */ public void setAllOrNone(boolean value) { this.allOrNone = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy