Statistics
| Revision:

gvsig-catalog / trunk / appCatalog / src / org / gvsig / catalog / csw / drivers / CSWISO19115CatalogServiceDriver.java @ 6

History | View | Annotate | Download (2.57 KB)

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

    
3
import org.gvsig.catalog.csw.drivers.profiles.CSWISO19115Profile;
4
import org.gvsig.catalog.csw.parsers.CSWConstants;
5
import org.gvsig.catalog.drivers.profiles.IProfile;
6
import org.gvsig.catalog.metadataxml.XMLNode;
7
import org.gvsig.catalog.metadataxml.XMLTree;
8

    
9

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

    
62
        /*
63
         * (non-Javadoc)
64
         * @see es.gva.cit.catalogClient.drivers.ICatalogServiceDriver#getServiceName()
65
         */
66
        public String getServiceName() {
67
                return SERVICE_NAME;
68
        }        
69
        
70
        /*
71
         * (non-Javadoc)
72
         * @see es.gva.cit.catalog.csw.drivers.CSWCatalogServiceDriver#retrieveResults(es.gva.cit.catalog.metadataxml.XMLNode)
73
         */
74
        protected XMLNode[] retrieveResults(XMLNode root){
75
                XMLNode resultNode = XMLTree.searchNode(root, CSWConstants.SEARCH_RESULTS);
76
                if (resultNode == null){
77
                        return new XMLNode[0];
78
                }
79
                XMLNode[] results = new XMLNode[resultNode.getNumSubNodes()];
80
                for (int i=0 ; i<resultNode.getNumSubNodes() ; i++){
81
                        results[i] = resultNode.getSubNode(i);
82
                }
83
                return results;
84
        }
85
        
86
        /*
87
         * (non-Javadoc)
88
         * @see es.gva.cit.catalog.drivers.AbstractCatalogServiceDriver#getProfile()
89
         */
90
        public IProfile getProfile() {
91
                return new CSWISO19115Profile();
92
        }
93

    
94
}