public class ServiceDescription
extends java.lang.Object
implements java.io.Serializable
The service descriptive information.
The information used to describe the service, that is, the information in the & lt; Service & gt; element of the GetCapabilities operation response result of the OGC service. As shown in the following figure (the following is the service description information for the WMS service):
Modifier and Type | Field and Description |
---|---|
java.lang.String |
accessConstraints
The access constraint.
|
ContactInformation |
contactInformation
The service provider contact information.
|
java.lang.String |
fees
The cost.
|
java.lang.String[] |
keywords
Keyword.
|
java.lang.String |
name
The service name.
|
java.lang.String |
onlineResource
The online resources.
|
java.lang.String |
serviceAbstract
The server description.
|
java.lang.String |
title
The title.
|
Constructor and Description |
---|
ServiceDescription()
The Constructor.
|
ServiceDescription(ServiceDescription serviceDescription)
Constructs new service descriptive information according to existing service descriptive information.
|
public java.lang.String name
The service name.
A service name represents an instantiated service. For example, a service named "WMS" represents a WMS service instance.
Required.
public java.lang.String title
The title.
Identifies the server. For example, the title "SuperMap Map Server" indicates that the server provides the WMS service.
Required.
public java.lang.String serviceAbstract
The server description.
The more detailed server description.
Optional.
public java.lang.String[] keywords
Keyword.
Uses keywords to facilitate directory searching.
Optional.
public java.lang.String onlineResource
The online resources.
Records the service’s Web site, usually the service’s URL address.
Required.
public ContactInformation contactInformation
The service provider contact information.
Optional.
public java.lang.String fees
The cost.
The cost of using the service. The keyword "none" means that the service is free to use.
Optional.
public java.lang.String accessConstraints
The access constraint.
Access to the constraints of a service. The keyword "none" indicates that the service has no access constraints.
Optional.
public ServiceDescription()
The Constructor.
public ServiceDescription(ServiceDescription serviceDescription)
Constructs new service descriptive information according to existing service descriptive information.
serviceDescription
- the service descriptive information.