// // 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.XmlAttribute; import javax.xml.bind.annotation.XmlID; import javax.xml.bind.annotation.XmlIDREF; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * <p>Java class for mdSecDefinition complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="mdSecDefinition"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <all> * <element ref="{info:lc/xmlns/premis-v2}mdRef" minOccurs="0"/> * <element ref="{info:lc/xmlns/premis-v2}mdWrap" minOccurs="0"/> * </all> * <attribute name="ID" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" /> * <attribute name="GROUPID" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="ADMID" type="{http://www.w3.org/2001/XMLSchema}IDREFS" /> * <attribute name="CREATED" type="{info:lc/xmlns/premis-v2}edtfSimpleType" /> * <attribute name="STATUS" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "mdSecDefinition", propOrder = { }) public class MdSecDefinition { protected MdRefDefinition mdRef; protected MdWrapDefinition mdWrap; @XmlAttribute(name = "ID", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID @XmlSchemaType(name = "ID") protected String id; @XmlAttribute(name = "GROUPID") protected String groupid; @XmlAttribute(name = "ADMID") @XmlIDREF @XmlSchemaType(name = "IDREFS") protected List<Object> admid; @XmlAttribute(name = "CREATED") protected String created; @XmlAttribute(name = "STATUS") protected String status; /** * Gets the value of the mdRef property. * * @return * possible object is * {@link MdRefDefinition } * */ public MdRefDefinition getMdRef() { return mdRef; } /** * Sets the value of the mdRef property. * * @param value * allowed object is * {@link MdRefDefinition } * */ public void setMdRef(MdRefDefinition value) { this.mdRef = value; } /** * Gets the value of the mdWrap property. * * @return * possible object is * {@link MdWrapDefinition } * */ public MdWrapDefinition getMdWrap() { return mdWrap; } /** * Sets the value of the mdWrap property. * * @param value * allowed object is * {@link MdWrapDefinition } * */ public void setMdWrap(MdWrapDefinition value) { this.mdWrap = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getID() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setID(String value) { this.id = value; } /** * Gets the value of the groupid property. * * @return * possible object is * {@link String } * */ public String getGROUPID() { return groupid; } /** * Sets the value of the groupid property. * * @param value * allowed object is * {@link String } * */ public void setGROUPID(String value) { this.groupid = value; } /** * Gets the value of the admid 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 admid property. * * <p> * For example, to add a new item, do as follows: * <pre> * getADMID().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Object } * * */ public List<Object> getADMID() { if (admid == null) { admid = new ArrayList<Object>(); } return this.admid; } /** * Gets the value of the created property. * * @return * possible object is * {@link String } * */ public String getCREATED() { return created; } /** * Sets the value of the created property. * * @param value * allowed object is * {@link String } * */ public void setCREATED(String value) { this.created = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link String } * */ public String getSTATUS() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link String } * */ public void setSTATUS(String value) { this.status = value; } }