com.glookast.api.templates.RequestStorageSystem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-templates Show documentation
Show all versions of api-templates Show documentation
Generated artifacts used for interfacing with Glookast Products
package com.glookast.api.templates;
import java.io.Serializable;
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 com.glookast.commons.templates.StorageSystem;
/**
* Java class for RequestStorageSystem complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RequestStorageSystem">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="storageSystem" type="{http://templates.commons.glookast.com}StorageSystem"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RequestStorageSystem", propOrder = {
"storageSystem"
})
public class RequestStorageSystem implements Serializable
{
@XmlElement(required = true)
protected StorageSystem storageSystem;
/**
* Default no-arg constructor
*
*/
public RequestStorageSystem() {
super();
}
/**
* Fully-initialising value constructor
*
*/
public RequestStorageSystem(final StorageSystem storageSystem) {
this.storageSystem = storageSystem;
}
/**
* Gets the value of the storageSystem property.
*
* @return
* possible object is
* {@link StorageSystem }
*
*/
public StorageSystem getStorageSystem() {
return storageSystem;
}
/**
* Sets the value of the storageSystem property.
*
* @param value
* allowed object is
* {@link StorageSystem }
*
*/
public void setStorageSystem(StorageSystem value) {
this.storageSystem = value;
}
}