Statistics
| Revision:

gvsig-raster / org.gvsig.raster.wmts / trunk / org.gvsig.raster.wmts / org.gvsig.raster.wmts.ogc / org.gvsig.raster.wmts.ogc.api / src / main / java / org / gvsig / raster / wmts / ogc / struct / WMTSOperationsMetadata.java @ 1961

History | View | Annotate | Download (766 Bytes)

1
package org.gvsig.raster.wmts.ogc.struct;
2

    
3
import java.util.Hashtable;
4

    
5
public interface WMTSOperationsMetadata {
6
        /**
7
         * Gets the online resource for a concrete operation.
8
         * The default protocol is GET
9
         * @param operation
10
         * The operation
11
         * @return The online resource
12
         */
13
        public String getOnlineResource(String operation);
14
        
15
        /**
16
         * Gets the online resource for the protocols GET and POST
17
         * @param operation
18
         * The operation
19
         * @param protocol
20
         * @return The online resource
21
         */
22
        public String getOnlineResource(String operation, int protocol);
23

    
24
        /**
25
         * Get a hash map with the supported operations
26
         * @return
27
         */
28
        public Hashtable<String, String> getSupportedOperationsByName();
29

    
30
        public boolean isOperationSupported(String operationName);
31
        
32
}