Class Storage
- java.lang.Object
-
- com.netgrif.application.engine.importer.model.Storage
-
public class Storage extends java.lang.Object
Java class for storage complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="storage"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="host" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="bucket" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description Storage()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getBucket()
Gets the value of the bucket property.java.lang.String
getHost()
Gets the value of the host property.java.lang.String
getType()
Gets the value of the type property.void
setBucket(java.lang.String value)
Sets the value of the bucket property.void
setHost(java.lang.String value)
Sets the value of the host property.void
setType(java.lang.String value)
Sets the value of the type property.
-
-
-
Method Detail
-
getType
public java.lang.String getType()
Gets the value of the type property.- Returns:
- possible object is
String
-
setType
public void setType(java.lang.String value)
Sets the value of the type property.- Parameters:
value
- allowed object isString
-
getHost
public java.lang.String getHost()
Gets the value of the host property.- Returns:
- possible object is
String
-
setHost
public void setHost(java.lang.String value)
Sets the value of the host property.- Parameters:
value
- allowed object isString
-
getBucket
public java.lang.String getBucket()
Gets the value of the bucket property.- Returns:
- possible object is
String
-
setBucket
public void setBucket(java.lang.String value)
Sets the value of the bucket property.- Parameters:
value
- allowed object isString
-
-