001 //$HeadURL: svn+ssh://rbezema@svn.wald.intevation.org/deegree/base/tags/2.1/src/org/deegree/ogcwebservices/sos/configuration/SensorConfiguration.java $
002 /*---------------- FILE HEADER ------------------------------------------
003
004 This file is part of deegree.
005 Copyright (C) 2001-2007 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: fitzke@lat-lon.de
040
041 ---------------------------------------------------------------------------*/
042 package org.deegree.ogcwebservices.sos.configuration;
043
044 import java.util.ArrayList;
045
046 /**
047 * represents a sensor configuration
048 *
049 * @author <a href="mailto:mkulbe@lat-lon.de">Matthias Kulbe </a>
050 * @author last edited by: $Author:wanhoff$
051 *
052 * @version $Revision: 6926 $, $Date:20.03.2007$
053 */
054 public class SensorConfiguration {
055
056 private String id = null;
057
058 private String idPropertyValue = null;
059
060 private String sourceServerId = null;
061
062 private ArrayList<MeasurementConfiguration> measurementConfigurations = new ArrayList<MeasurementConfiguration>();
063
064 /**
065 * constructor
066 *
067 * @param id
068 * @param idPropertyValue
069 * @param sourceServerId
070 * @param measurements
071 */
072 public SensorConfiguration( String id, String idPropertyValue, String sourceServerId,
073 MeasurementConfiguration[] measurements ) {
074 this.id = id;
075 this.idPropertyValue = idPropertyValue;
076 this.sourceServerId = sourceServerId;
077
078 if ( measurements != null ) {
079 for ( int i = 0; i < measurements.length; i++ ) {
080 this.measurementConfigurations.add( measurements[i] );
081 }
082 } else {
083
084 }
085 }
086
087 /**
088 * returns all measurements
089 *
090 * @return all measurements
091 */
092 public MeasurementConfiguration[] getMeasurementConfigurations() {
093 return measurementConfigurations.toArray( new MeasurementConfiguration[measurementConfigurations.size()] );
094 }
095
096 /**
097 * returns the first measurement; is the default if the user don't request a special measurement
098 *
099 * @return the first measurement
100 */
101 public MeasurementConfiguration getFirstMeasurementConfiguration() {
102 return this.measurementConfigurations.get( 0 );
103 }
104
105 /**
106 *
107 * @return id
108 */
109 public String getId() {
110 return id;
111 }
112
113 /**
114 *
115 * @return idPropertyValue
116 */
117 public String getIdPropertyValue() {
118 return idPropertyValue;
119 }
120
121 /**
122 *
123 * @return sourceServerId
124 */
125 public String getSourceServerId() {
126 return sourceServerId;
127 }
128
129 /**
130 * overwrites the equals function
131 *
132 * @param obj
133 * @return
134 */
135 public boolean equals( Object obj ) {
136 if ( !( obj instanceof SensorConfiguration ) ) {
137 return false;
138 }
139 if ( this.getId().equals( ( (SensorConfiguration) obj ).getId() ) ) {
140 return true;
141 }
142 return false;
143 }
144
145 /**
146 * returns the Measurement Config by the given id
147 *
148 * @param id
149 * @return the Measurement Config by the given id
150 */
151 public MeasurementConfiguration getMeasurementById( String id ) {
152 for ( int i = 0; i < this.measurementConfigurations.size(); i++ ) {
153 if ( this.measurementConfigurations.get( i ).equals( id ) ) {
154 return this.measurementConfigurations.get( i );
155 }
156 }
157 return null;
158 }
159
160 }