// // 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 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 licenseIdentifierComplexType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="licenseIdentifierComplexType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{info:lc/xmlns/premis-v2}licenseIdentifierType"/> * <element ref="{info:lc/xmlns/premis-v2}licenseIdentifierValue"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "licenseIdentifierComplexType", propOrder = { "licenseIdentifierType", "licenseIdentifierValue" }) public class LicenseIdentifierComplexType { @XmlElement(required = true) protected String licenseIdentifierType; @XmlElement(required = true) protected String licenseIdentifierValue; /** * Gets the value of the licenseIdentifierType property. * * @return * possible object is * {@link String } * */ public String getLicenseIdentifierType() { return licenseIdentifierType; } /** * Sets the value of the licenseIdentifierType property. * * @param value * allowed object is * {@link String } * */ public void setLicenseIdentifierType(String value) { this.licenseIdentifierType = value; } /** * Gets the value of the licenseIdentifierValue property. * * @return * possible object is * {@link String } * */ public String getLicenseIdentifierValue() { return licenseIdentifierValue; } /** * Sets the value of the licenseIdentifierValue property. * * @param value * allowed object is * {@link String } * */ public void setLicenseIdentifierValue(String value) { this.licenseIdentifierValue = value; } }