/* * Copyright (C) 2014 Robert Simonovsky * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package cz.cas.lib.proarc.mets; 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.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * objectType: complexType for interfaceDef and mechanism elements The mechanism * and behavior elements point to external objects--an interface definition * object or an executable code object respectively--which together constitute a * behavior that can be applied to one or more <div> elements in a <structMap>. * * * <p> * Java class for objectType complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="objectType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attGroup ref="{http://www.w3.org/1999/xlink}simpleLink"/> * <attGroup ref="{http://www.loc.gov/METS/}LOCATION"/> * <attribute name="ID" type="{http://www.w3.org/2001/XMLSchema}ID" /> * <attribute name="LABEL" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "objectType", namespace = "http://www.loc.gov/METS/") public class ObjectType { @XmlAttribute(name = "ID") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID @XmlSchemaType(name = "ID") protected String id; @XmlAttribute(name = "LABEL") protected String label6; @XmlAttribute(name = "type", namespace = "http://www.w3.org/1999/xlink") protected String type; @XmlAttribute(name = "href", namespace = "http://www.w3.org/1999/xlink") @XmlSchemaType(name = "anyURI") protected String href; @XmlAttribute(name = "role", namespace = "http://www.w3.org/1999/xlink") protected String role; @XmlAttribute(name = "arcrole", namespace = "http://www.w3.org/1999/xlink") protected String arcrole; @XmlAttribute(name = "title", namespace = "http://www.w3.org/1999/xlink") protected String title; @XmlAttribute(name = "show", namespace = "http://www.w3.org/1999/xlink") protected String show; @XmlAttribute(name = "actuate", namespace = "http://www.w3.org/1999/xlink") protected String actuate; @XmlAttribute(name = "LOCTYPE", required = true) protected String loctype; @XmlAttribute(name = "OTHERLOCTYPE") protected String otherloctype; /** * 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 label6 property. * * @return possible object is {@link String } * */ public String getLabel6() { return label6; } /** * Sets the value of the label6 property. * * @param value * allowed object is {@link String } * */ public void setLabel6(String value) { this.label6 = value; } /** * Gets the value of the type property. * * @return possible object is {@link String } * */ public String getType() { if (type == null) { return "simple"; } else { return type; } } /** * Sets the value of the type property. * * @param value * allowed object is {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the href property. * * @return possible object is {@link String } * */ public String getHref() { return href; } /** * Sets the value of the href property. * * @param value * allowed object is {@link String } * */ public void setHref(String value) { this.href = value; } /** * Gets the value of the role property. * * @return possible object is {@link String } * */ public String getRole() { return role; } /** * Sets the value of the role property. * * @param value * allowed object is {@link String } * */ public void setRole(String value) { this.role = value; } /** * Gets the value of the arcrole property. * * @return possible object is {@link String } * */ public String getArcrole() { return arcrole; } /** * Sets the value of the arcrole property. * * @param value * allowed object is {@link String } * */ public void setArcrole(String value) { this.arcrole = value; } /** * Gets the value of the title property. * * @return possible object is {@link String } * */ public String getTitle() { return title; } /** * Sets the value of the title property. * * @param value * allowed object is {@link String } * */ public void setTitle(String value) { this.title = value; } /** * Gets the value of the show property. * * @return possible object is {@link String } * */ public String getShow() { return show; } /** * Sets the value of the show property. * * @param value * allowed object is {@link String } * */ public void setShow(String value) { this.show = value; } /** * Gets the value of the actuate property. * * @return possible object is {@link String } * */ public String getActuate() { return actuate; } /** * Sets the value of the actuate property. * * @param value * allowed object is {@link String } * */ public void setActuate(String value) { this.actuate = value; } /** * Gets the value of the loctype property. * * @return possible object is {@link String } * */ public String getLOCTYPE() { return loctype; } /** * Sets the value of the loctype property. * * @param value * allowed object is {@link String } * */ public void setLOCTYPE(String value) { this.loctype = value; } /** * Gets the value of the otherloctype property. * * @return possible object is {@link String } * */ public String getOTHERLOCTYPE() { return otherloctype; } /** * Sets the value of the otherloctype property. * * @param value * allowed object is {@link String } * */ public void setOTHERLOCTYPE(String value) { this.otherloctype = value; } }