// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-793 // 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: 2009.07.03 at 05:59:50 PM CEST // package com.sun.jersey.json.impl.rim; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** * * Represents a classification of its parent object within specified value in a ClassificationScheme. * * * <p>Java class for ClassificationType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ClassificationType"> * <complexContent> * <extension base="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}RegistryObjectType"> * <attribute name="classificationScheme" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}objectReferenceType" /> * <attribute name="classifiedObject" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}objectReferenceType" /> * <attribute name="classificationNode" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}objectReferenceType" /> * <attribute name="nodeRepresentation" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}LongName" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ClassificationType") public class ClassificationType extends RegistryObjectType { @XmlAttribute protected String classificationScheme; @XmlAttribute protected String classifiedObject; @XmlAttribute protected String classificationNode; @XmlAttribute protected String nodeRepresentation; /** * Gets the value of the classificationScheme property. * * @return * possible object is * {@link String } * */ public String getClassificationScheme() { return classificationScheme; } /** * Sets the value of the classificationScheme property. * * @param value * allowed object is * {@link String } * */ public void setClassificationScheme(String value) { this.classificationScheme = value; } /** * Gets the value of the classifiedObject property. * * @return * possible object is * {@link String } * */ public String getClassifiedObject() { return classifiedObject; } /** * Sets the value of the classifiedObject property. * * @param value * allowed object is * {@link String } * */ public void setClassifiedObject(String value) { this.classifiedObject = value; } /** * Gets the value of the classificationNode property. * * @return * possible object is * {@link String } * */ public String getClassificationNode() { return classificationNode; } /** * Sets the value of the classificationNode property. * * @param value * allowed object is * {@link String } * */ public void setClassificationNode(String value) { this.classificationNode = value; } /** * Gets the value of the nodeRepresentation property. * * @return * possible object is * {@link String } * */ public String getNodeRepresentation() { return nodeRepresentation; } /** * Sets the value of the nodeRepresentation property. * * @param value * allowed object is * {@link String } * */ public void setNodeRepresentation(String value) { this.nodeRepresentation = value; } }