Statistics
| Revision:

gvsig-catalog / trunk / appCatalog / src / org / gvsig / catalog / drivers / profiles / IProfile.java @ 6

History | View | Annotate | Download (3 KB)

1
package org.gvsig.catalog.drivers.profiles;
2
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
3
 *
4
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 2
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
19
 *
20
 * For more information, contact:
21
 *
22
 *  Generalitat Valenciana
23
 *   Conselleria d'Infraestructures i Transport
24
 *   Av. Blasco Ib??ez, 50
25
 *   46010 VALENCIA
26
 *   SPAIN
27
 *
28
 *      +34 963862235
29
 *   gvsig@gva.es
30
 *      www.gvsig.gva.es
31
 *
32
 *    or
33
 *
34
 *   IVER T.I. S.A
35
 *   Salamanca 50
36
 *   46005 Valencia
37
 *   Spain
38
 *
39
 *   +34 963163400
40
 *   dac@iver.es
41
 */
42
/* CVS MESSAGES:
43
 *
44
 * $Id$
45
 * $Log$
46
 *
47
 */
48
/**
49
 * @author Jorge Piera LLodr? (jorge.piera@iver.es)
50
 */
51
public interface IProfile {
52
        public static final String TITLE = "titlePropertyName";
53
        public static final String ABSTRACT = "abstractPropertyName";
54
        public static final String KEYWORDS = "keywordsPropertyName";
55
        public static final String CATHEGORY = "cathegoryPropertyName";
56
        public static final String SCALE = "scalePropertyName";
57
        public static final String PROVIDER = "providerPropertyName";
58
        public static final String COORDINATES = "coordinatesPropertyName";
59
        public static final String DATEFROM = "datefromPropertyName";
60
        public static final String DATETO = "datetoPropertyName";
61
        public static final String ELEMENT_NAME = "elementNamePropertyName";
62
        
63
        /**
64
         * @return the element name property
65
         */
66
        public String getElementNameProperty();
67
        
68
        /**
69
         * @return the title attribute name
70
         */
71
        public String getTitleProperty();
72

    
73
        /**
74
         * @return the abstract attribute name
75
         */
76
        public String getAbstractProperty();
77

    
78
        /**
79
         * @return the keyword attribute name 
80
         */
81
        public String getKeywordsProperty();
82

    
83
        /**
84
         * @return the topic attribute name  
85
         */
86
        public String getTopicProperty();
87

    
88
        /**
89
         * @return the scale attribute name  
90
         */
91
        public String getScaleProperty();
92

    
93
        /**
94
         * @return the provider attribute name 
95
         */
96
        public String getProviderProperty();
97

    
98
        /**
99
         * @return the date from attribute name  
100
         */
101
        public String getDateFromProperty();
102

    
103
        /**
104
         * @return the date to attribute name  
105
         */
106
        public String getDateToProperty();
107

    
108
        /**
109
         * @return the coordinates attribute name  
110
         */
111
        public String getCoordinatesProperty();
112

    
113
        /**
114
         * Return the topic name for a concrete profile
115
         * @param topic
116
         * @return
117
         * The topic name
118
         */
119
        public String getTopicValue(String topic);     
120

    
121
}