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

com.glookast.commons.templates.AvidStorageSystem 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for AvidStorageSystem complex type. * *

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

 * <complexType name="AvidStorageSystem">
 *   <complexContent>
 *     <extension base="{http://templates.commons.glookast.com}StorageSystem">
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AvidStorageSystem", namespace = "http://templates.commons.glookast.com") @XmlSeeAlso({ AvidNexusStorageSystem.class, AvidOtherStorageSystem.class, AvidMediaNetworkStorageSystem.class }) public abstract class AvidStorageSystem extends StorageSystem implements Serializable { /** * Default no-arg constructor * */ public AvidStorageSystem() { super(); } /** * Fully-initialising value constructor * */ public AvidStorageSystem(final UUID id, final String name, final String description) { super(id, name, description); } public AvidStorageSystem(AvidStorageSystem ss) { super(ss); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy