package at.gv.e_government.reference.namespace.moa._20020822; 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.XmlElement; import javax.xml.bind.annotation.XmlElements; import javax.xml.bind.annotation.XmlType; /** *

Java class for CreateCMSSignatureResponseType complex type. * *

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

 * <complexType name="CreateCMSSignatureResponseType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <choice maxOccurs="unbounded">
 *         <element name="CMSSignature" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
 *         <element ref="{http://reference.e-government.gv.at/namespace/moa/20020822#}ErrorResponse"/>
 *       </choice>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CreateCMSSignatureResponseType", propOrder = { "cmsSignatureOrErrorResponse" }) public class CreateCMSSignatureResponseType { @XmlElements({ @XmlElement(name = "CMSSignature", type = byte[].class), @XmlElement(name = "ErrorResponse", type = ErrorResponseType.class) }) protected List cmsSignatureOrErrorResponse; /** * Gets the value of the cmsSignatureOrErrorResponse 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 cmsSignatureOrErrorResponse property. * *

* For example, to add a new item, do as follows: *

     *    getCMSSignatureOrErrorResponse().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * byte[] {@link ErrorResponseType } * * */ public List getCMSSignatureOrErrorResponse() { if (cmsSignatureOrErrorResponse == null) { cmsSignatureOrErrorResponse = new ArrayList(); } return this.cmsSignatureOrErrorResponse; } }