001 //$HeadURL: svn+ssh://rbezema@svn.wald.intevation.org/deegree/base/branches/2.2_testing/src/org/deegree/ogcwebservices/sos/capabilities/SOSOperationsMetadata.java $ 002 /*---------------- FILE HEADER ------------------------------------------ 003 004 This file is part of deegree. 005 Copyright (C) 2001-2008 by: 006 EXSE, Department of Geography, University of Bonn 007 http://www.giub.uni-bonn.de/deegree/ 008 lat/lon GmbH 009 http://www.lat-lon.de 010 011 This library is free software; you can redistribute it and/or 012 modify it under the terms of the GNU Lesser General Public 013 License as published by the Free Software Foundation; either 014 version 2.1 of the License, or (at your option) any later version. 015 016 This library is distributed in the hope that it will be useful, 017 but WITHOUT ANY WARRANTY; without even the implied warranty of 018 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 019 Lesser General Public License for more details. 020 021 You should have received a copy of the GNU Lesser General Public 022 License along with this library; if not, write to the Free Software 023 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 024 025 Contact: 026 027 Andreas Poth 028 lat/lon GmbH 029 Aennchenstraße 19 030 53177 Bonn 031 Germany 032 E-Mail: poth@lat-lon.de 033 034 Prof. Dr. Klaus Greve 035 lat/lon GmbH 036 Aennchenstraße 19 037 53177 Bonn 038 Germany 039 E-Mail: greve@giub.uni-bonn.de 040 041 ---------------------------------------------------------------------------*/ 042 package org.deegree.ogcwebservices.sos.capabilities; 043 044 import org.deegree.ogcwebservices.getcapabilities.Operation; 045 import org.deegree.ogcwebservices.getcapabilities.OperationsMetadata; 046 047 /** 048 * Describe the OWS OperationsMetadata, is a part of the SCS Capabilities 049 * 050 * @author <a href="mailto:mkulbe@lat-lon.de">Matthias Kulbe</a> 051 * 052 * @version 1.0 053 */ 054 public class SOSOperationsMetadata extends OperationsMetadata { 055 056 public static final String DESCRIBE_PLATFORM_NAME = "DescribePlatform"; 057 058 public static final String DESCRIBE_SENSOR_NAME = "DescribeSensor"; 059 060 public static final String GET_OBSERVATION_NAME = "GetObservation"; 061 062 private Operation describePlatform; 063 064 private Operation describeSensor; 065 066 private Operation getObservation; 067 068 /** 069 * constructor 070 * 071 * @param getCapabilities 072 * @param describePlatform 073 * @param describeSensor 074 * @param getObservation 075 */ 076 public SOSOperationsMetadata( Operation getCapabilities, Operation describePlatform, 077 Operation describeSensor, Operation getObservation ) { 078 079 super( getCapabilities, null, null ); 080 081 this.describePlatform = describePlatform; 082 this.describeSensor = describeSensor; 083 this.getObservation = getObservation; 084 085 } 086 087 /** 088 * 089 */ 090 public Operation[] getOperations() { 091 return new Operation[] { getCapabilitiesOperation, describePlatform, describeSensor, 092 getObservation }; 093 } 094 095 /** 096 * 097 * @return describePlatform 098 */ 099 public Operation getDescribePlatform() { 100 return describePlatform; 101 } 102 103 /** 104 * 105 * @param describePlatform 106 */ 107 public void setDescribePlatform( Operation describePlatform ) { 108 this.describePlatform = describePlatform; 109 } 110 111 /** 112 * 113 * @return describeSensor 114 */ 115 public Operation getDescribeSensor() { 116 return describeSensor; 117 } 118 119 /** 120 * 121 * @param describeSensor 122 */ 123 public void setDescribeSensor( Operation describeSensor ) { 124 this.describeSensor = describeSensor; 125 } 126 127 /** 128 * 129 * @return getObservation 130 */ 131 public Operation getGetObservation() { 132 return getObservation; 133 } 134 135 /** 136 * 137 * @param getObservation 138 */ 139 public void setGetObservation( Operation getObservation ) { 140 this.getObservation = getObservation; 141 } 142 }