
com.palominolabs.crm.sf.soap.jaxwsstub.metadata.ApprovalStepApprover Maven / Gradle / Ivy
package com.palominolabs.crm.sf.soap.jaxwsstub.metadata;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ApprovalStepApprover complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ApprovalStepApprover">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="approver" type="{http://soap.sforce.com/2006/04/metadata}Approver" maxOccurs="unbounded" minOccurs="0"/>
* <element name="whenMultipleApprovers" type="{http://soap.sforce.com/2006/04/metadata}RoutingType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ApprovalStepApprover", propOrder = {
"approver",
"whenMultipleApprovers"
})
public class ApprovalStepApprover {
protected List approver;
protected RoutingType whenMultipleApprovers;
/**
* Gets the value of the approver property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the approver property.
*
*
* For example, to add a new item, do as follows:
*
* getApprover().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Approver }
*
*
*/
public List getApprover() {
if (approver == null) {
approver = new ArrayList();
}
return this.approver;
}
/**
* Gets the value of the whenMultipleApprovers property.
*
* @return
* possible object is
* {@link RoutingType }
*
*/
public RoutingType getWhenMultipleApprovers() {
return whenMultipleApprovers;
}
/**
* Sets the value of the whenMultipleApprovers property.
*
* @param value
* allowed object is
* {@link RoutingType }
*
*/
public void setWhenMultipleApprovers(RoutingType value) {
this.whenMultipleApprovers = value;
}
}