Revision 12750 branches/CatalogYNomenclator_v1_1_0_1005/applications/appCatalogYNomenclatorClient/src/es/gva/cit/gazetteer/drivers/GazetteerCapabilities.java

View differences:

GazetteerCapabilities.java
1 1
package es.gva.cit.gazetteer.drivers;
2 2

  
3
import java.util.Properties;
4

  
3
import es.gva.cit.catalogClient.drivers.DiscoveryServiceCapabilities;
5 4
import es.gva.cit.gazetteer.querys.FeatureType;
6 5

  
7 6
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
......
48 47
 *
49 48
 * $Id$
50 49
 * $Log$
51
 * Revision 1.1.2.1  2007-07-10 11:18:04  jorpiell
50
 * Revision 1.1.2.2  2007-07-23 12:52:47  jorpiell
51
 * Refactoring of the capabilities message
52
 *
53
 * Revision 1.1.2.1  2007/07/10 11:18:04  jorpiell
52 54
 * Added the registers
53 55
 *
54 56
 *
......
56 58
/**
57 59
 * @author Jorge Piera LLodr? (jorge.piera@iver.es)
58 60
 */
59
public class GazetteerCapabilities {
60
	private String version = null;
61
	private Properties properties = null;
61
public class GazetteerCapabilities extends DiscoveryServiceCapabilities{
62 62
	private FeatureType[] featureTypes = null;
63 63
	
64
	/**
65
	 * @return the version
66
	 */
67
	public String getVersion() {
68
		return version;
69
	}
70
	
71
	/**
72
	 * @param version the version to set
73
	 */
74
	public void setVersion(String version) {
75
		this.version = version;
76
	}
77
	
78
	/**
79
	 * @return the properties
80
	 */
81
	public Properties getProperties() {
82
		return properties;
83
	}
84
	
85
	/**
86
	 * @param properties the properties to set
87
	 */
88
	public void setProperties(Properties properties) {
89
		this.properties = properties;
90
	}
91 64

  
92 65
	/**
93 66
	 * @return the featureTypes
......
102 75
	public void setFeatureTypes(FeatureType[] featureTypes) {
103 76
		this.featureTypes = featureTypes;
104 77
	}
78

  
105 79
	
80
	
106 81
}

Also available in: Unified diff