Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libRemoteServices / src / org / gvsig / remoteClient / wcs / WCSStatus.java @ 4493

History | View | Annotate | Download (2.75 KB)

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

    
59
import java.awt.geom.Rectangle2D;
60
import java.util.Vector;
61

    
62
import org.gvsig.remoteClient.RemoteClientStatus;
63

    
64
public class WCSStatus extends RemoteClientStatus {
65
        private String                layerName                = null;
66
        private String                time                        = null;
67
        private String                parameter                = null;
68
        private String                resolution                = null;
69
        private Rectangle2D        bBox                        = null;
70
        private String                coverageName        = null;
71
        private String                onlineResource        = null;
72
        private Integer                depth                        = null;
73
        private String                times                        = null;
74
        private String                parameters                = null;
75
        
76
        public void setExtent(Rectangle2D bBox) {
77
                this.bBox = bBox;
78
        }
79

    
80
        
81
        public void setCoveraName(String coverageName) {
82
                this.coverageName = coverageName;
83
        }
84

    
85

    
86
        public void setParameters(String parameters) {
87
                this.parameter = parameters;
88
        }
89

    
90

    
91
        public void setOnlineResource(String onlineResources) {
92
                this.onlineResource = onlineResources;
93
        }
94

    
95

    
96
        public String getOnlineResource() {
97
                return onlineResource;
98
        }
99

    
100

    
101
        public String getCoverageName() {
102
                return this.coverageName;
103
        }
104
        
105
        public Rectangle2D getExtent() {
106
                return this.bBox;
107
        }
108

    
109

    
110
        public Integer getDepth() {
111
                return depth;
112
        }
113

    
114
        public String getTime() {
115
                return times;
116
        }
117
        
118
        public String getParameters() {
119
                return parameters;
120
        }
121
}