Statistics
| Revision:

root / trunk / libraries / libRemoteServices / src / org / gvsig / remoteClient / descriptor / WMSCapabilities.java @ 2991

History | View | Annotate | Download (454 Bytes)

1
package org.gvsig.remoteClient.descriptor;
2

    
3
/**
4
 * Class that stores a WMS Capabilities description:
5
 *  - Layer list
6
 *  - General service information.
7
 * @author Laura Diaz
8
*/
9
public class WMSCapabilities 
10
{
11
        private MapComposition mapComposition;
12
        private ServiceInformation serviceInfo;        
13
        
14
        
15
        public MapComposition getMapComposition()
16
        {
17
                return mapComposition;
18
        }
19
        
20
        public ServiceInformation getServiceInformation()
21
        {
22
                return serviceInfo;
23
        }
24

    
25
}