Revision 26604 tmp/trunk/cliente/WorkSpace_WPSClient/extWPSCallejero/src/es/logex/gvsig/fmap/drivers/WPSDriver.java

View differences:

WPSDriver.java
1
/* gvSIG. Sistema de Información Geográfica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2008 Logica Extrema, S.L. 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
 *   Logica Extrema, S.L.
34
 *   Edif. Sorolla Center
35
 *   Avgda. De les Corts Valencianes, 158 Of.1007
36
 *   46015 Valencia
37
 *   Spain
38
 *
39
 *   +34 963462375
40
 *   info@logex.es
41
 */
1 42
package es.logex.gvsig.fmap.drivers;
2 43

  
3 44
import java.net.URL;
......
5 46
import com.iver.cit.gvsig.fmap.DriverException;
6 47
import com.iver.cit.gvsig.fmap.drivers.VectorialDriver;
7 48

  
49
// TODO: Auto-generated Javadoc
50
/**
51
 * The Interface WPSDriver.
52
 */
8 53
public interface WPSDriver extends VectorialDriver{
9 54
	
55
	/**
56
	 * Gets the capabilities.
57
	 * 
58
	 * @param server the server
59
	 * 
60
	 * @return the capabilities
61
	 * 
62
	 * @throws WPSException the WPS exception
63
	 */
10 64
	public void getCapabilities(URL server) throws WPSException;
11 65
	
66
	/**
67
	 * Describe process.
68
	 * 
69
	 * @param processName the process name
70
	 * 
71
	 * @throws WPSException the WPS exception
72
	 */
12 73
	public void describeProcess(String processName) throws WPSException;
13 74
	
75
	/**
76
	 * Execute process.
77
	 * 
78
	 * @param processName the process name
79
	 * 
80
	 * @throws WPSException the WPS exception
81
	 */
14 82
	public void executeProcess(String processName) throws WPSException;
15 83

  
84
	/**
85
	 * Open.
86
	 * 
87
	 * @throws DriverException the driver exception
88
	 */
16 89
	public void open() throws DriverException;
17 90

  
91
	/**
92
	 * Close. does nothing
93
	 */
18 94
	public void close(); 
19 95
	
96
	/**
97
	 * Gets the inner driver.
98
	 * 
99
	 * @return the inner driver (the encapsulated gml driver)
100
	 */
20 101
	public VectorialDriver getInnerDriver();
21 102
	
22 103
}

Also available in: Unified diff