// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2012.11.13 at 06:00:06 PM CET // package eu.prestoprime.premis; 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; /** * <p>Java class for signatureComplexType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="signatureComplexType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{info:lc/xmlns/premis-v2}signatureEncoding"/> * <element ref="{info:lc/xmlns/premis-v2}signer" minOccurs="0"/> * <element ref="{info:lc/xmlns/premis-v2}signatureMethod"/> * <element ref="{info:lc/xmlns/premis-v2}signatureValue"/> * <element ref="{info:lc/xmlns/premis-v2}signatureValidationRules"/> * <element ref="{info:lc/xmlns/premis-v2}signatureProperties" maxOccurs="unbounded" minOccurs="0"/> * <element ref="{info:lc/xmlns/premis-v2}keyInformation" maxOccurs="unbounded" minOccurs="0"/> * <element ref="{info:lc/xmlns/premis-v2}mdSec" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "signatureComplexType", propOrder = { "signatureEncoding", "signer", "signatureMethod", "signatureValue", "signatureValidationRules", "signatureProperties", "keyInformation", "mdSec" }) public class SignatureComplexType { @XmlElement(required = true) protected String signatureEncoding; protected String signer; @XmlElement(required = true) protected String signatureMethod; @XmlElement(required = true) protected String signatureValue; @XmlElement(required = true) protected String signatureValidationRules; protected List<String> signatureProperties; protected List<ExtensionComplexType> keyInformation; protected List<MdSecDefinition> mdSec; /** * Gets the value of the signatureEncoding property. * * @return * possible object is * {@link String } * */ public String getSignatureEncoding() { return signatureEncoding; } /** * Sets the value of the signatureEncoding property. * * @param value * allowed object is * {@link String } * */ public void setSignatureEncoding(String value) { this.signatureEncoding = value; } /** * Gets the value of the signer property. * * @return * possible object is * {@link String } * */ public String getSigner() { return signer; } /** * Sets the value of the signer property. * * @param value * allowed object is * {@link String } * */ public void setSigner(String value) { this.signer = value; } /** * Gets the value of the signatureMethod property. * * @return * possible object is * {@link String } * */ public String getSignatureMethod() { return signatureMethod; } /** * Sets the value of the signatureMethod property. * * @param value * allowed object is * {@link String } * */ public void setSignatureMethod(String value) { this.signatureMethod = value; } /** * Gets the value of the signatureValue property. * * @return * possible object is * {@link String } * */ public String getSignatureValue() { return signatureValue; } /** * Sets the value of the signatureValue property. * * @param value * allowed object is * {@link String } * */ public void setSignatureValue(String value) { this.signatureValue = value; } /** * Gets the value of the signatureValidationRules property. * * @return * possible object is * {@link String } * */ public String getSignatureValidationRules() { return signatureValidationRules; } /** * Sets the value of the signatureValidationRules property. * * @param value * allowed object is * {@link String } * */ public void setSignatureValidationRules(String value) { this.signatureValidationRules = value; } /** * Gets the value of the signatureProperties property. * * <p> * 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 <CODE>set</CODE> method for the signatureProperties property. * * <p> * For example, to add a new item, do as follows: * <pre> * getSignatureProperties().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getSignatureProperties() { if (signatureProperties == null) { signatureProperties = new ArrayList<String>(); } return this.signatureProperties; } /** * Gets the value of the keyInformation property. * * <p> * 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 <CODE>set</CODE> method for the keyInformation property. * * <p> * For example, to add a new item, do as follows: * <pre> * getKeyInformation().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ExtensionComplexType } * * */ public List<ExtensionComplexType> getKeyInformation() { if (keyInformation == null) { keyInformation = new ArrayList<ExtensionComplexType>(); } return this.keyInformation; } /** * Gets the value of the mdSec property. * * <p> * 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 <CODE>set</CODE> method for the mdSec property. * * <p> * For example, to add a new item, do as follows: * <pre> * getMdSec().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link MdSecDefinition } * * */ public List<MdSecDefinition> getMdSec() { if (mdSec == null) { mdSec = new ArrayList<MdSecDefinition>(); } return this.mdSec; } }