All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.glookast.commons.templates.MetadataSystem Maven / Gradle / Ivy


package com.glookast.commons.templates;

import java.io.Serializable;
import java.util.UUID;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import com.glookast.commons.xml.XmlAdapterUUID;


/**
 * 

Java class for MetadataSystem complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="MetadataSystem">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="id" type="{http://base.commons.glookast.com}UUID"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MetadataSystem", namespace = "http://templates.commons.glookast.com", propOrder = { "id", "name", "description" }) @XmlSeeAlso({ AvidAafExportMetadataSystem.class, XmlExportMetadataSystem.class, AvidInterplayMetadataSystem.class }) public abstract class MetadataSystem implements Serializable { @XmlElement(required = true, type = String.class) @XmlJavaTypeAdapter(XmlAdapterUUID.class) protected UUID id; @XmlElement(required = true) protected String name; @XmlElement(required = true) protected String description; /** * Default no-arg constructor * */ public MetadataSystem() { super(); } /** * Fully-initialising value constructor * */ public MetadataSystem(final UUID id, final String name, final String description) { this.id = id; this.name = name; this.description = description; } public MetadataSystem(MetadataSystem ms) { this.id = ms.id; this.name = ms.name; this.description = ms.description; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public UUID getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(UUID value) { this.id = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy