Revision 1961 org.gvsig.raster.wmts/trunk/org.gvsig.raster.wmts/org.gvsig.raster.wmts.ogc/org.gvsig.raster.wmts.ogc.impl/src/main/java/org/gvsig/raster/wmts/ogc/impl/base/WMTSServerDescription.java

View differences:

WMTSServerDescription.java
29 29
import org.gvsig.raster.wmts.ogc.exception.WMTSException;
30 30
import org.gvsig.raster.wmts.ogc.impl.Tags;
31 31
import org.gvsig.raster.wmts.ogc.impl.struct.WMTSLayerImpl;
32
import org.gvsig.raster.wmts.ogc.impl.struct.WMTSOperationsMetadataImpl;
32 33
import org.gvsig.raster.wmts.ogc.impl.struct.WMTSServiceIdentificationImpl;
33 34
import org.gvsig.raster.wmts.ogc.impl.struct.WMTSServiceProviderImpl;
34 35
import org.gvsig.raster.wmts.ogc.impl.struct.WMTSThemesImpl;
......
61 62
	private WMTSThemesImpl                themesAsLayerList  = null;
62 63
	private WMTSServiceIdentificationImpl serviceId          = null;
63 64
	private WMTSServiceProviderImpl       serviceProv        = null;
65
	private WMTSOperationsMetadataImpl    operationsMetadata = null;
64 66
	private String                        version            = null;
65 67
	
66 68
	public WMTSServerDescription(String version) {
......
185 187
			return null;
186 188
		}
187 189
	}
190
	
191
	/**
192
	 * Gets the OperationMetadata information
193
	 * @return
194
	 */
195
	public WMTSOperationsMetadataImpl getOperationsMetadata() {
196
		if(operationsMetadata == null)
197
			operationsMetadata = (WMTSOperationsMetadataImpl)createVersionObject("WMTSOperationsMetadata", version);
198
		return operationsMetadata;
199
	}
188 200

  
189 201
	/**
190
	 * Gets the layer structure
202
	 * Gets the ServiceIdentification information
191 203
	 * @return
192 204
	 */
193 205
	public WMTSServiceIdentificationImpl getServiceIdentification() {

Also available in: Unified diff