Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.remoteclient / src / main / java / org / gvsig / remoteclient / wcs / WCSServiceInformation.java @ 40769

History | View | Annotate | Download (2.91 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
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 3
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
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
package org.gvsig.remoteclient.wcs;
25

    
26
import java.util.HashMap;
27
import java.util.Vector;
28

    
29
import org.gvsig.remoteclient.ogc.OGCClientOperation;
30
import org.gvsig.remoteclient.ogc.OGCServiceInformation;
31

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

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

    
85
        public OGCClientOperation createOperation(String name) {
86
                return new WCSOperation(name); 
87
        }
88

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

    
93
  
94
}
95