package at.gv.util.xsd.szr_v4; 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.XmlType; /** *

Java-Klasse für SignContentResponseType complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="SignContentResponseType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="JwsAlg" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Cert" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
 *         <element name="Out" type="{urn:SZRServices}SignContentEntry" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SignContentResponseType", propOrder = { "jwsAlg", "cert", "out" }) public class SignContentResponseType { @XmlElement(name = "JwsAlg") protected String jwsAlg; @XmlElement(name = "Cert") protected byte[] cert; @XmlElement(name = "Out") protected List out; /** * Ruft den Wert der jwsAlg-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getJwsAlg() { return jwsAlg; } /** * Legt den Wert der jwsAlg-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setJwsAlg(String value) { this.jwsAlg = value; } /** * Ruft den Wert der cert-Eigenschaft ab. * * @return * possible object is * byte[] */ public byte[] getCert() { return cert; } /** * Legt den Wert der cert-Eigenschaft fest. * * @param value * allowed object is * byte[] */ public void setCert(byte[] value) { this.cert = value; } /** * Gets the value of the out 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 out property. * *

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

     *    getOut().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SignContentEntry } * * */ public List getOut() { if (out == null) { out = new ArrayList(); } return this.out; } }