Package org.n52.shetland.ogc.ows.service
Class OwsServiceCommunicationObject
- java.lang.Object
-
- org.n52.shetland.ogc.ows.service.OwsServiceCommunicationObject
-
- Direct Known Subclasses:
OwsServiceRequest,OwsServiceResponse
public abstract class OwsServiceCommunicationObject extends Object
- Since:
- 1.0.0
-
-
Constructor Summary
Constructors Constructor Description OwsServiceCommunicationObject()OwsServiceCommunicationObject(String service, String version)OwsServiceCommunicationObject(String service, String version, String operationName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description OwsOperationKeygetKey()StringgetOperationName()StringgetService()StringgetVersion()booleanhasOperationName()booleanisSetService()booleanisSetVersion()OwsServiceCommunicationObjectset(OwsServiceCommunicationObject object)Set service and version from anotherOwsServiceCommunicationObjectvoidsetOperationName(String operationName)OwsServiceCommunicationObjectsetService(String service)OwsServiceCommunicationObjectsetVersion(String version)StringtoString()
-
-
-
Method Detail
-
getService
public String getService()
- Returns:
- the service
-
setService
public OwsServiceCommunicationObject setService(String service)
- Parameters:
service- the service to set- Returns:
- this
-
setVersion
public OwsServiceCommunicationObject setVersion(String version)
- Parameters:
version- the version to set- Returns:
- this
-
getVersion
public String getVersion()
- Returns:
- the version
-
isSetService
public boolean isSetService()
- Returns:
true, if service is not null or empty
-
isSetVersion
public boolean isSetVersion()
- Returns:
true, if version is not null or empty
-
set
public OwsServiceCommunicationObject set(OwsServiceCommunicationObject object)
Set service and version from anotherOwsServiceCommunicationObject- Parameters:
object- TheOwsServiceCommunicationObjectto get values from- Returns:
- this.
-
getOperationName
public String getOperationName()
- Returns:
- the operationName
-
setOperationName
public void setOperationName(String operationName)
-
hasOperationName
public boolean hasOperationName()
-
getKey
public OwsOperationKey getKey()
-
-