com.glookast.commons.templates.AvidMediaNetworkStorageSystem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-templates Show documentation
Show all versions of commons-templates Show documentation
Common classes used for interfacing with Glookast Products
package com.glookast.commons.templates;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import java.io.Serializable;
import java.util.Objects;
import java.util.UUID;
/**
* Java class for AvidMediaNetworkStorageSystem complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AvidMediaNetworkStorageSystem">
* <complexContent>
* <extension base="{http://templates.commons.glookast.com}AvidStorageSystem">
* <sequence>
* <element name="fileManager" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="workspace" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AvidMediaNetworkStorageSystem", namespace = "http://templates.commons.glookast.com", propOrder = {
"fileManager",
"workspace"
})
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, defaultImpl = AvidMediaNetworkStorageSystem.class)
public class AvidMediaNetworkStorageSystem
extends AvidStorageSystem
implements Serializable
{
@XmlElement(required = true)
protected String fileManager;
@XmlElement(required = true)
protected String workspace;
/**
* Default no-arg constructor
*/
public AvidMediaNetworkStorageSystem()
{
super();
}
/**
* Fully-initialising value constructor
*/
public AvidMediaNetworkStorageSystem(final UUID id, final String name, final String description, final String fileManager, final String workspace)
{
super(id, name, description);
this.fileManager = fileManager;
this.workspace = workspace;
}
public AvidMediaNetworkStorageSystem(AvidMediaNetworkStorageSystem ss)
{
super(ss);
this.fileManager = ss.fileManager;
this.workspace = ss.workspace;
}
/**
* Gets the value of the fileManager property.
*
* @return possible object is
* {@link String }
*/
public String getFileManager()
{
return fileManager;
}
/**
* Sets the value of the fileManager property.
*
* @param value allowed object is
* {@link String }
*/
public void setFileManager(String value)
{
this.fileManager = value;
}
/**
* Gets the value of the workspace property.
*
* @return possible object is
* {@link String }
*/
public String getWorkspace()
{
return workspace;
}
/**
* Sets the value of the workspace property.
*
* @param value allowed object is
* {@link String }
*/
public void setWorkspace(String value)
{
this.workspace = value;
}
@Override
public boolean equals(Object o)
{
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
if (!super.equals(o)) {
return false;
}
AvidMediaNetworkStorageSystem that = (AvidMediaNetworkStorageSystem) o;
return Objects.equals(getFileManager(), that.getFileManager()) &&
Objects.equals(getWorkspace(), that.getWorkspace());
}
@Override
public int hashCode()
{
return Objects.hash(super.hashCode(), getFileManager(), getWorkspace());
}
@Override
public String toString()
{
return "AvidMediaNetworkStorageSystem{" + "id=" + id + ", name=" + name + ", description=" + description + ", fileManager=" + fileManager + ", workspace=" + workspace + '}';
}
}