Statistics
| Revision:

svn-gvsig-desktop / branches / CatalogYNomenclator_v1_1_0_1005 / applications / appCatalogYNomenclatorClient / src / es / gva / cit / catalogClient / schemas / records / IdecISO19115Record.java @ 12746

History | View | Annotate | Download (3.31 KB)

1

    
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
package es.gva.cit.catalogClient.schemas.records;
43
import java.net.URI;
44

    
45
import es.gva.cit.catalogClient.metadataxml.XMLNode;
46
import es.gva.cit.catalogClient.metadataxml.XMLTree;
47

    
48
/**
49
 * This class parses the Indicio CSW server answer files.
50
 * 
51
 * 
52
 * @author Jorge Piera Llodra (piera_jor@gva.es)
53
 */
54
public class IdecISO19115Record extends Record {
55

    
56
        public  IdecISO19115Record() {   
57

    
58
        }
59

    
60
        /**
61
         * @param node 
62
         */
63
        public  IdecISO19115Record(URI uri,XMLNode node) {        
64
                super(uri,node);
65
                setTitle(XMLTree.searchNodeValue(node,
66
                                "identificationInfo->MD_DataIdentification->citation->title"));
67
                setAbstract_(XMLTree.searchNodeValue(node,
68
                "identificationInfo->MD_DataIdentification->abstract"));
69
                setPurpose(XMLTree.searchNodeValue(node,
70
                "identificationInfo->MD_DataIdentification->purpose"));
71
                setKeyWords(XMLTree.searchMultipleNodeValue(node,
72
                "identificationInfo->MD_DataIdentification->descriptiveKeywords->keyword"));
73
                setResources(getResources("distributionInfo->distributor->distributorTransferOptions->onLine"));
74
                //setImage(getImageUrl("identificationInfo->MD_DataIdentification->graphicOverview->fileName"));
75
        } 
76

    
77
        /**
78
         * It parses the online resources
79
         * 
80
         * 
81
         * @return Resource
82
         * @param label Label that contains the resource root
83
         */
84
        private Resource[] getResources(String label) {        
85
                XMLNode[] nodes = XMLTree.searchMultipleNode(getNode(), label);
86

    
87
                if (nodes == null) {
88
                        return null;
89
                }
90
                Resource[] resources = new Resource[nodes.length];
91

    
92
                for (int i = 0; i < resources.length; i++){
93

    
94
                        String sProtocol = XMLTree.searchNodeValue(nodes[i], "protocol");
95
                        String sName = XMLTree.searchNodeValue(nodes[i], "orName");
96

    
97
                        if (sProtocol == null){
98
                                sProtocol =   Resource.WEBSITE;
99
                                sName =  "orName";
100
                        }
101

    
102
                        resources[i] = new Resource(XMLTree.searchNodeValue(nodes[i],
103
                        "linkage"),
104
                        sProtocol,
105
                        sName,
106
                        "orDesc",
107
                        "",
108
                        "",        
109
                        null);
110
                }
111
                return resources;
112
        }
113

    
114
        /*
115
         * (non-Javadoc)
116
         * @see es.gva.cit.catalogClient.schemas.discoverer.Record#accept(java.net.URI, es.gva.cit.catalogClient.metadataxml.XMLNode)
117
         */
118
        public boolean accept(URI uri, XMLNode node) {
119
                return false;
120
        } 
121
}