001 //$HeadURL: svn+ssh://rbezema@svn.wald.intevation.org/deegree/base/tags/2.1/src/org/deegree/ogcwebservices/wass/wss/operation/RequestParameter.java $ 002 /*---------------- FILE HEADER ------------------------------------------ 003 004 This file is part of deegree. 005 Copyright (C) 2001-2006 by: 006 EXSE, Department of Geography, University of Bonn 007 http://www.giub.uni-bonn.de/exse/ 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 Jens Fitzke 035 lat/lon GmbH 036 Aennchenstraße 19 037 53177 Bonn 038 Germany 039 E-Mail: jens.fitzke@uni-bonn.de 040 041 ---------------------------------------------------------------------------*/ 042 043 package org.deegree.ogcwebservices.wass.wss.operation; 044 045 /** 046 * Encapsulate the requestparameter of a DoServiceRequest. 047 * 048 * @author <a href="mailto:bezema@lat-lon.de">Rutger Bezema</a> 049 * @author last edited by: $Author: bezema $ 050 * 051 * @version 2.0, $Revision: 6259 $, $Date: 2007-03-20 10:15:15 +0100 (Di, 20 Mär 2007) $ 052 * 053 * @since 2.0 054 */ 055 056 public class RequestParameter { 057 private String parameter = null; 058 059 private String id = null; 060 061 /** 062 * @param parameter 063 * @param id 064 */ 065 public RequestParameter( String parameter, String id ) { 066 this.parameter = parameter; 067 this.id = id; 068 } 069 070 /** 071 * @return Returns the id. 072 */ 073 public String getId() { 074 return id; 075 } 076 077 /** 078 * @return Returns the parameter. 079 */ 080 public String getParameter() { 081 return parameter; 082 } 083 084 } 085 086 /*************************************************************************************************** 087 * Changes to this class. What the people have been up to: $Log$ 088 * Changes to this class. What the people have been up to: Revision 1.4 2006/08/24 06:42:16 poth 089 * Changes to this class. What the people have been up to: File header corrected 090 * Changes to this class. What the people have been up to: 091 * Changes to this class. What the people have been up to: Revision 1.3 2006/06/20 15:31:04 bezema 092 * Changes to this class. What the people have been up to: It looks like the completion of wss. was needs further checking in a tomcat environment. The Strings must still be externalized. Logging is done, so is the formatting. 093 * Changes to this class. What the people have been up to: Revision 094 * 1.2 2006/05/30 10:12:02 bezema Putting the cvs asci option to -kkv which will update the 095 * $revision$ $author$ and $date$ variables in a cvs commit 096 * 097 * Revision 1.1 2006/05/29 12:00:58 bezema Refactored the security and authentication webservices 098 * into one package WASS (Web Authentication -and- Security Services), also created a common package 099 * and a saml package which could be updated to work in the future. 100 * 101 * Revision 1.1 2006/05/23 15:22:02 bezema Added configuration files to the wss and wss is able to 102 * parse a DoService Request in xml 103 * 104 * 105 **************************************************************************************************/