001 //$HeadURL: svn+ssh://rbezema@svn.wald.intevation.org/deegree/base/tags/2.1/src/org/deegree/ogcwebservices/wass/was/configuration/WASConfiguration.java $ 002 /*---------------- FILE HEADER ------------------------------------------ 003 004 This file is part of deegree. 005 Copyright (C) 2001-2004 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 Meckenheimer Allee 176 030 53115 Bonn 031 Germany 032 E-Mail: poth@lat-lon.de 033 034 Prof. Dr. Klaus Greve 035 Department of Geography 036 University of Bonn 037 Meckenheimer Allee 166 038 53115 Bonn 039 Germany 040 E-Mail: greve@giub.uni-bonn.de 041 042 ---------------------------------------------------------------------------*/ 043 044 package org.deegree.ogcwebservices.wass.was.configuration; 045 046 import org.deegree.ogcwebservices.wass.was.capabilities.WASCapabilities; 047 048 /** 049 * Encapsulates the configuration data for a WAS. 050 * 051 * @author <a href="mailto:bezema@lat-lon.de">Rutger Bezema</a> 052 * @author last edited by: $Author: bezema $ 053 * 054 * @version 2.0, $Revision: 6259 $, $Date: 2007-03-20 10:15:15 +0100 (Di, 20 Mär 2007) $ 055 * 056 * @since 2.0 057 */ 058 059 public class WASConfiguration extends WASCapabilities { 060 061 private static final long serialVersionUID = -1135265074478652811L; 062 063 private WASDeegreeParams deegreeParams = null; 064 065 /** 066 * @param cap 067 * @param deegreeParams 068 */ 069 public WASConfiguration( WASCapabilities cap, WASDeegreeParams deegreeParams ) { 070 super( cap.getVersion(), cap.getUpdateSequence(), cap.getServiceIdentification(), 071 cap.getServiceProvider(), cap.getOperationsMetadata(), 072 cap.getAuthenticationMethods() ); 073 this.deegreeParams = deegreeParams; 074 } 075 076 /** 077 * @return Returns the deegreeParams. 078 */ 079 public WASDeegreeParams getDeegreeParams() { 080 return deegreeParams; 081 } 082 083 } 084 085 /*************************************************************************************************** 086 * Changes to this class. What the people have been up to: $Log$ 087 * Changes to this class. What the people have been up to: Revision 1.7 2006/07/07 15:03:03 schmitz 088 * Changes to this class. What the people have been up to: Fixed a few warnings. 089 * Changes to this class. What the people have been up to: Added database options to WASS deegree params. 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.6 2006/06/23 10:23:50 schmitz 092 * Changes to this class. What the people have been up to: Completed the WAS, GetSession and CloseSession work. 093 * Changes to this class. What the people have been up to: 094 * Changes to this class. What the people have been up to: Revision 1.5 2006/06/19 15:34:04 bezema 095 * Changes to this class. What the people have been up to: changed wass to handle things the right way 096 * Changes to this class. What the people have been up to: 097 * Changes to this class. What the people have been up to: Revision 1.4 2006/06/09 12:58:32 schmitz 098 * Changes to this class. What the people have been up to: Set up some tests for WAS/WSS and the URN class. 099 * Changes to this class. What the people have been up to: Commented out some of the deegree param stuff in order for the 100 * Changes to this class. What the people have been up to: tests to run. 101 * Changes to this class. What the people have been up to: Tests have hardcoded URLs in them, so they won't run just anywhere. 102 * Changes to this class. What the people have been up to: Revision 1.3 2006/05/30 15:11:28 103 * bezema Working on the postclient from apachecommons to place a request to the services behind the 104 * wss proxy 105 * 106 * Revision 1.2 2006/05/30 08:44:48 bezema Reararranging the layout (again) to use features of OOP. 107 * The owscommonDocument is the real baseclass now. 108 * 109 * Revision 1.1 2006/05/29 12:00:58 bezema Refactored the security and authentication webservices 110 * into one package WASS (Web Authentication -and- Security Services), also created a common package 111 * and a saml package which could be updated to work in the future. 112 * 113 * Revision 1.1 2006/05/26 11:55:09 schmitz Extended the handlers to actually do something useful. 114 * Added configuration package to WAS, added plan text file. Added GetSessionHandler interface, 115 * added CloseSessionHandler. 116 * 117 * Revision 1.1 2006/05/23 15:22:02 bezema Added configuration files to the wss and wss is able to 118 * parse a DoService Request in xml 119 * 120 * 121 **************************************************************************************************/