Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.api / src / main / java / org / gvsig / fmap / dal / resource / ResourceParameters.java @ 40435

History | View | Annotate | Download (452 Bytes)

1
package org.gvsig.fmap.dal.resource;
2

    
3
import org.gvsig.fmap.dal.DataParameters;
4

    
5
/**
6
 * Interface that contains any resource parameters.
7
 * Each specific subtype of resource will extend this
8
 * interface with its own relevant parameters.
9
 *
10
 */
11
public interface ResourceParameters extends DataParameters {
12

    
13
        /**
14
         * Returns the type name of the related resource.
15
         * 
16
         * @return
17
         *                 type name of the resource.
18
         */
19
        public String getTypeName();
20

    
21
}
22