public final class CapabilitiesRequest extends Request
| Constructor and Description |
|---|
CapabilitiesRequest()
Construct an OGC GetCapabilities request using the default service.
|
CapabilitiesRequest(java.net.URI uri)
Constructs a request for the default service, WMS, and a specified server.
|
CapabilitiesRequest(java.net.URI uri,
java.lang.String service)
Constructs a request for a specified service at a specified server.
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
initialize(java.lang.String service) |
getParam, getRequestName, getService, getUri, getVersion, setParam, setService, setUri, setVersion, toStringpublic CapabilitiesRequest()
public CapabilitiesRequest(java.net.URI uri)
throws java.net.URISyntaxException
uri - the address of the web service.java.lang.IllegalArgumentException - if the uri is null.java.net.URISyntaxException - if the web service address is not a valid URI.public CapabilitiesRequest(java.net.URI uri,
java.lang.String service)
throws java.net.URISyntaxException
uri - the address of the web service.service - the service name. Common names are WMS, WFS, WCS, etc.java.lang.IllegalArgumentException - if the uri or service name is null.java.net.URISyntaxException - if the web service address is not a valid URI.protected void initialize(java.lang.String service)
initialize in class Request