Package uk.ac.rdg.resc.edal.wms.util
Interface ServerInfo
-
public interface ServerInfoEncapsulates some server metadata for a WMS server- Author:
- Guy Griffiths
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanallowsFeatureInfo()booleanallowsGlobalCapabilities()StringgetAbstract()List<String>getKeywords()intgetMaxImageHeight()intgetMaxImageWidth()intgetMaxSimultaneousLayers()StringgetName()
-
-
-
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:
trueif this server allows capabilities documents to be generated for all datasets
-
-