Statistics
| Revision:

gvsig-catalog / org.gvsig.catalog / branches / org.gvsig.catalog-CSW2.0.2 / org.gvsig.catalog / org.gvsig.catalog.lib / src / main / java / org / gvsig / catalog / csw / drivers / profiles / CSWISO19115Profile.java @ 55

History | View | Annotate | Download (3.24 KB)

1
package org.gvsig.catalog.csw.drivers.profiles;
2

    
3

    
4
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
5
 *
6
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
7
 *
8
 * This program is free software; you can redistribute it and/or
9
 * modify it under the terms of the GNU General Public License
10
 * as published by the Free Software Foundation; either version 2
11
 * of the License, or (at your option) any later version.
12
 *
13
 * This program is distributed in the hope that it will be useful,
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 * GNU General Public License for more details.
17
 *
18
 * You should have received a copy of the GNU General Public License
19
 * along with this program; if not, write to the Free Software
20
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
21
 *
22
 * For more information, contact:
23
 *
24
 *  Generalitat Valenciana
25
 *   Conselleria d'Infraestructures i Transport
26
 *   Av. Blasco Ib??ez, 50
27
 *   46010 VALENCIA
28
 *   SPAIN
29
 *
30
 *      +34 963862235
31
 *   gvsig@gva.es
32
 *      www.gvsig.gva.es
33
 *
34
 *    or
35
 *
36
 *   IVER T.I. S.A
37
 *   Salamanca 50
38
 *   46005 Valencia
39
 *   Spain
40
 *
41
 *   +34 963163400
42
 *   dac@iver.es
43
 */
44
/* CVS MESSAGES:
45
 *
46
 * $Id$
47
 * $Log$
48
 *
49
 */
50
/**
51
 * @author Jorge Piera LLodr? (jorge.piera@iver.es)
52
 */
53
public class CSWISO19115Profile extends CSWAbstractProfile{
54

    
55
        public CSWISO19115Profile() {
56
                super();                
57
        }
58
        
59
        /*
60
         * (non-Javadoc)
61
         * @see es.gva.cit.catalog.csw.drivers.profiles.ICSWProfile#getTitle()
62
         */
63
        public String getTitleProperty() {
64
                return "title";
65
        }
66

    
67
        /*
68
         * (non-Javadoc)
69
         * @see es.gva.cit.catalog.csw.drivers.profiles.ICSWProfile#getAbstract()
70
         */
71
        public String getAbstractProperty() {
72
                 return "abstract";
73
        }
74

    
75
        /*
76
         * (non-Javadoc)
77
         * @see es.gva.cit.catalog.csw.drivers.profiles.ICSWProfile#getCoordinates()
78
         */
79
        public String getCoordinatesProperty() {
80
                 return "geom";
81
        }
82

    
83
        /*
84
         * (non-Javadoc)
85
         * @see es.gva.cit.catalog.csw.drivers.profiles.ICSWProfile#getDateFrom()
86
         */
87
        public String getDateFromProperty() {
88
                 return "modified";
89
        }
90

    
91
        /*
92
         * (non-Javadoc)
93
         * @see es.gva.cit.catalog.csw.drivers.profiles.ICSWProfile#getDateTo()
94
         */
95
        public String getDateToProperty() {
96
                return "modified";
97
        }
98

    
99
        /*
100
         * (non-Javadoc)
101
         * @see es.gva.cit.catalog.csw.drivers.profiles.ICSWProfile#getProvider()
102
         */
103
        public String getProviderProperty() {
104
                return "publisher";
105
        }
106

    
107
        /*
108
         * (non-Javadoc)
109
         * @see es.gva.cit.catalog.csw.drivers.profiles.ICSWProfile#getScale()
110
         */
111
        public String getScaleProperty() {
112
                  return "scale";
113
        }
114

    
115
        /*
116
         * (non-Javadoc)
117
         * @see es.gva.cit.catalog.csw.drivers.profiles.ICSWProfile#getThemeKey()
118
         */
119
        public String getKeywordsProperty() {
120
                 return "keyword";
121
        }
122

    
123
        /*
124
         * (non-Javadoc)
125
         * @see es.gva.cit.catalog.csw.drivers.profiles.ICSWProfile#getTopic()
126
         */
127
        public String getTopicProperty() {
128
                 return "topic";
129
        }
130

    
131
        /*
132
         * (non-Javadoc)
133
         * @see es.gva.cit.catalog.csw.drivers.profiles.ICSWProfile#getTopicValue(java.lang.String)
134
         */
135
        public String getTopicValue(String topic) {
136
                return topic;
137
        }
138

    
139
        /*
140
         * (non-Javadoc)
141
         * @see es.gva.cit.catalog.drivers.profiles.IProfile#getElementNameProperty()
142
         */
143
        public String getElementNameProperty() {
144
                return null;
145
        }        
146
        
147

    
148
}