Statistics
| Revision:

svn-gvsig-desktop / tags / v2_0_0_Build_2020 / libraries / libRemoteServices / src / org / gvsig / remoteclient / wcs / WCSServiceInformation.java @ 33856

History | View | Annotate | Download (2.91 KB)

1
/* gvSIG. Geographic Information System of the Valencian Government
2
*
3
* Copyright (C) 2007-2008 Infrastructures and Transports Department
4
* of the Valencian Government (CIT)
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., 51 Franklin Street, Fifth Floor, Boston, 
19
* MA  02110-1301, USA.
20
* 
21
*/
22

    
23
/*
24
* AUTHORS (In addition to CIT):
25
* 2009 {Iver T.I.}   {Task}
26
*/
27
 
28
package org.gvsig.remoteclient.wcs;
29

    
30
import java.util.HashMap;
31
import java.util.Vector;
32

    
33
import org.gvsig.remoteclient.ogc.OGCClientOperation;
34
import org.gvsig.remoteclient.ogc.OGCServiceInformation;
35

    
36
/**
37
 * @author <a href="mailto:jpiera@gvsig.org">Jorge Piera</a>
38
 */
39
public class WCSServiceInformation extends OGCServiceInformation {
40
         public String online_resource = null;
41
     public String version;
42
     public String name;
43
     public String scope;
44
     public String title;
45
     public String abstr;
46
     public String keywords;
47
     public String fees;
48
     public String operationsInfo;
49
     public String personname;
50
     public String organization;
51
     public String function;
52
     public String addresstype;
53
     public String address;
54
     public String place;
55
     public String province;
56
     public String postcode;
57
     public String country;
58
     public String phone;
59
     public String fax;
60
     public String email;
61
     public Vector formats;
62
     public HashMap operations; // operations that WCS supports
63

    
64
     public WCSServiceInformation()
65
     {
66
         version = new String();
67
         name = new String();
68
         scope = new String();
69
         title = new String();
70
         abstr = new String();
71
         keywords = new String();
72
         fees = new String();
73
         operationsInfo = new String();
74
         personname = new String();
75
         organization = new String();
76
         function = new String();
77
         addresstype = new String();
78
         address = new String();
79
         place = new String();
80
         province = new String();
81
         postcode = new String();
82
         country = new String();
83
         phone = new String();
84
         fax = new String();
85
         email = new String();
86
         operations = new HashMap();
87
     }
88

    
89
        public OGCClientOperation createOperation(String name) {
90
                return new WCSOperation(name); 
91
        }
92

    
93
        public OGCClientOperation createOperation(String name, String onlineResource) {
94
                return new WCSOperation(name, onlineResource);
95
        }
96

    
97
  
98
}
99