001 //$HeadURL: svn+ssh://rbezema@svn.wald.intevation.org/deegree/base/tags/2.1/src/org/deegree/portal/standard/sos/Constants.java $ 002 003 /*---------------- FILE HEADER ------------------------------------------ 004 005 This file is part of deegree. 006 Copyright (C) 2001-2006 by: 007 EXSE, Department of Geography, University of Bonn 008 http://www.giub.uni-bonn.de/deegree/ 009 lat/lon GmbH 010 http://www.lat-lon.de 011 012 This library is free software; you can redistribute it and/or 013 modify it under the terms of the GNU Lesser General Public 014 License as published by the Free Software Foundation; either 015 version 2.1 of the License, or (at your option) any later version. 016 017 This library is distributed in the hope that it will be useful, 018 but WITHOUT ANY WARRANTY; without even the implied warranty of 019 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 020 Lesser General Public License for more details. 021 022 You should have received a copy of the GNU Lesser General Public 023 License along with this library; if not, write to the Free Software 024 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 025 026 Contact: 027 028 Andreas Poth 029 lat/lon GmbH 030 Aennchenstr. 19 031 53115 Bonn 032 Germany 033 E-Mail: poth@lat-lon.de 034 035 Prof. Dr. Klaus Greve 036 Department of Geography 037 University of Bonn 038 Meckenheimer Allee 166 039 53115 Bonn 040 Germany 041 E-Mail: greve@giub.uni-bonn.de 042 043 044 ---------------------------------------------------------------------------*/ 045 package org.deegree.portal.standard.sos; 046 047 /** 048 * Constants for SOSClient. 049 * 050 * @author <a href="mailto:che@wupperverband.de.de">Christian Heier</a> 051 * @version 0.1 052 */ 053 public class Constants { 054 055 private Constants(){ 056 // prevent instantiation 057 } 058 059 /** 060 * Comment for <code>TYPENAME</code> 061 */ 062 public static final String TYPENAME = "TypeName"; 063 064 /** 065 * Comment for <code>PLATFORMDESCRIPTION</code> 066 */ 067 public static final String PLATFORMDESCRIPTION = "PlatformDescription"; 068 069 /** 070 * Comment for <code>PLATFORMDESCRIPTION</code> 071 */ 072 public static final String SENSORDESCRIPTION = "SensorDescription"; 073 074 public static final String OBSERVATION_DATA = "ObservationData"; 075 076 } 077 /* ******************************************************************** 078 Changes to this class. What the people have been up to: 079 $Log$ 080 Revision 1.5 2006/08/29 19:54:14 poth 081 footer corrected 082 083 Revision 1.4 2006/04/06 20:25:25 poth 084 *** empty log message *** 085 086 Revision 1.3 2006/04/04 20:39:41 poth 087 *** empty log message *** 088 089 Revision 1.2 2006/03/30 21:20:25 poth 090 *** empty log message *** 091 092 Revision 1.1 2006/02/05 09:30:12 poth 093 *** empty log message *** 094 095 Revision 1.4 2005/09/06 18:05:51 taddei 096 added more constants 097 098 Revision 1.3 2005/09/05 15:25:35 taddei 099 added constant 100 101 Revision 1.2 2005/08/31 13:23:36 taddei 102 Made interface a (non-instatianble) class 103 104 Revision 1.1 2005/08/26 10:12:40 taddei 105 first upload of C. Heyer's client code 106 107 ********************************************************************** */