Class AggregationServiceDescription
- java.lang.Object
-
- ch.systemsx.cisd.openbis.plugin.query.shared.api.v1.dto.AggregationServiceDescription
-
- All Implemented Interfaces:
java.io.Serializable
@JsonObject("AggregationServiceDescription") public class AggregationServiceDescription extends java.lang.Object implements java.io.SerializableBean with information about aggregation services that provide data.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AggregationServiceDescription()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDataStoreBaseUrl()Returns the base URL of the data store that provides this service.java.lang.StringgetDataStoreCode()The code of the data store that provides this service.java.lang.StringgetLabel()Returns the label of the service.java.lang.StringgetServiceKey()The key that identifies this particular service.AggregationServiceTypegetType()The type of the service.voidsetDataStoreBaseUrl(java.lang.String dataStoreBaseUrl)voidsetDataStoreCode(java.lang.String dataStoreCode)voidsetLabel(java.lang.String label)voidsetServiceKey(java.lang.String key)voidsetType(AggregationServiceType type)java.lang.StringtoString()
-
-
-
Method Detail
-
getDataStoreCode
public java.lang.String getDataStoreCode()
The code of the data store that provides this service. Non-null.
-
getDataStoreBaseUrl
public java.lang.String getDataStoreBaseUrl()
Returns the base URL of the data store that provides this service. Non-null.- Since:
- 1.4
-
getServiceKey
public java.lang.String getServiceKey()
The key that identifies this particular service. Non-null.
-
getLabel
public java.lang.String getLabel()
Returns the label of the service.- Since:
- 1.5
-
getType
public AggregationServiceType getType()
The type of the service. Non-null.
-
setDataStoreCode
public void setDataStoreCode(java.lang.String dataStoreCode)
-
setDataStoreBaseUrl
public void setDataStoreBaseUrl(java.lang.String dataStoreBaseUrl)
-
setServiceKey
public void setServiceKey(java.lang.String key)
-
setLabel
public void setLabel(java.lang.String label)
-
setType
public void setType(AggregationServiceType type)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-