Package uk.ac.rdg.resc.edal.wms.util
Interface ServerInfo
-
public interface ServerInfo
Encapsulates some server metadata for a WMS server- Author:
- Guy Griffiths
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
allowsFeatureInfo()
boolean
allowsGlobalCapabilities()
String
getAbstract()
List<String>
getKeywords()
int
getMaxImageHeight()
int
getMaxImageWidth()
int
getMaxSimultaneousLayers()
String
getName()
-
-
-
Method Detail
-
getName
String getName()
- Returns:
- The name of this server
-
getAbstract
String getAbstract()
- Returns:
- Short descriptive text about this server
-
getMaxSimultaneousLayers
int getMaxSimultaneousLayers()
- Returns:
- The maximum number of layers which can be requested in the same image.
-
getMaxImageWidth
int getMaxImageWidth()
- Returns:
- The maximum image width this server supports
-
getMaxImageHeight
int getMaxImageHeight()
- Returns:
- The maximum image height this server supports
-
allowsFeatureInfo
boolean allowsFeatureInfo()
- Returns:
- Whether or not this server allows GetFeatureInfo requests
-
allowsGlobalCapabilities
boolean allowsGlobalCapabilities()
- Returns:
true
if this server allows capabilities documents to be generated for all datasets
-
-