001    //$HeadURL: svn+ssh://rbezema@svn.wald.intevation.org/deegree/base/tags/2.1/src/org/deegree/ogcwebservices/wass/wss/configuration/WSSConfiguration.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.configuration;
044    
045    import org.deegree.ogcwebservices.wass.wss.capabilities.WSSCapabilities;
046    
047    /**
048     * The configuration class represents the capabilities and the "deegree specific parameter" which
049     * will be sent back to the clienst getCapabilities request.
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 WSSConfiguration extends WSSCapabilities {
060    
061        private static final long serialVersionUID = -1135265074478652811L;
062    
063        private WSSDeegreeParams deegreeParams = null;
064    
065        /**
066         * @param capabilities
067         * @param deegreeParams
068         */
069        public WSSConfiguration( WSSCapabilities capabilities, WSSDeegreeParams deegreeParams ) {
070            super( capabilities.getVersion(), capabilities.getUpdateSequence(),
071                   capabilities.getServiceIdentification(), capabilities.getServiceProvider(),
072                   capabilities.getOperationsMetadata(), capabilities.getSecuredServiceType(),
073                   capabilities.getAuthenticationMethods() );
074            this.deegreeParams = deegreeParams;
075        }
076        
077        
078    
079        /**
080         * @return Returns the deegree specific Parameters.
081         */
082        public WSSDeegreeParams getDeegreeParams() {
083            return deegreeParams;
084        }
085    
086    }
087    
088    /***************************************************************************************************
089     * Changes to this class. What the people have been up to: $Log$
090     * Changes to this class. What the people have been up to: Revision 1.21  2006/08/24 06:42:17  poth
091     * Changes to this class. What the people have been up to: File header corrected
092     * Changes to this class. What the people have been up to:
093     * Changes to this class. What the people have been up to: Revision 1.20  2006/06/27 13:10:47  bezema
094     * Changes to this class. What the people have been up to: Finished the last bits of the configuration of the wass.
095     * Changes to this class. What the people have been up to:
096     * Changes to this class. What the people have been up to: Revision 1.19  2006/06/20 15:31:05  bezema
097     * 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.
098     * Changes to this class. What the people have been up to: Changes
099     * to this class. What the people have been up to: Revision 1.18 2006/06/19 15:34:04 bezema Changes
100     * to this class. What the people have been up to: changed wass to handle things the right way
101     * Changes to this class. What the people have been up to: Changes to this class. What the people
102     * have been up to: Revision 1.17 2006/06/12 13:32:29 bezema Changes to this class. What the people
103     * have been up to: kvp is implemented Changes to this class. What the people have been up to:
104     * Changes to this class. What the people have been up to: Revision 1.16 2006/06/09 12:58:32 schmitz
105     * Changes to this class. What the people have been up to: Set up some tests for WAS/WSS and the URN
106     * class. Changes to this class. What the people have been up to: Commented out some of the deegree
107     * param stuff in order for the Changes to this class. What the people have been up to: tests to
108     * run. Changes to this class. What the people have been up to: Tests have hardcoded URLs in them,
109     * so they won't run just anywhere. Changes to this class. What the people have been up to: Revision
110     * 1.15 2006/05/30 10:12:02 bezema Putting the cvs asci option to -kkv which will update the
111     * $revision$ $author$ and $date$ variables in a cvs commit
112     * 
113     * Revision 1.14 2006/05/30 09:29:29 bezema docu test
114     * 
115     * Revision 1.13 2006/05/30 09:27:31 bezema docu test
116     * 
117     * Revision 1.12 2006/05/30 09:25:26 bezema docu test
118     * 
119     * Revision 1.11 2006/05/30 09:25:11 bezema docu test
120     * 
121     * Revision 1.10 2006/05/30 09:24:24 bezema docu test
122     * 
123     * Revision 1.9 2006/05/30 09:23:30 bezema docu test
124     * 
125     * Revision 1.8 2006/05/30 09:23:13 bezema docu test
126     * 
127     * Revision 1.7 2006/05/30 09:22:43 bezema docu test
128     * 
129     * Revision 1.6 2006/05/30 09:20:57 bezema docu test
130     * 
131     * Revision 1.5 2006/05/30 08:54:53 bezema docu test
132     * 
133     * Revision 1.4 2006/05/30 08:49:47 bezema docu test
134     * 
135     * Revision 1.3 2006/05/30 08:48:42 bezema docu test
136     * 
137     * Revision 1.2 2006/05/30 08:44:48 bezema Reararranging the layout (again) to use features of OOP.
138     * The owscommonDocument is the real baseclass now.
139     * 
140     * Revision 1.1 2006/05/29 12:00:58 bezema Refactored the security and authentication webservices
141     * into one package WASS (Web Authentication -and- Security Services), also created a common package
142     * and a saml package which could be updated to work in the future.
143     * 
144     * Revision 1.1 2006/05/23 15:22:02 bezema Added configuration files to the wss and wss is able to
145     * parse a DoService Request in xml
146     * 
147     * 
148     **************************************************************************************************/