001 //$HeadURL: svn+ssh://rbezema@svn.wald.intevation.org/deegree/base/branches/2.2_testing/src/org/deegree/ogcwebservices/wass/was/operation/WASGetCapabilities.java $
002 /*---------------- FILE HEADER ------------------------------------------
003
004 This file is part of deegree.
005 Copyright (C) 2001-2008 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 Aennchenstr. 19
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.operation;
045
046 import java.util.Map;
047
048 import org.deegree.framework.log.ILogger;
049 import org.deegree.framework.log.LoggerFactory;
050 import org.deegree.framework.xml.XMLParsingException;
051 import org.deegree.ogcwebservices.OGCWebServiceException;
052 import org.deegree.ogcwebservices.OGCWebServiceRequest;
053 import org.deegree.ogcwebservices.getcapabilities.GetCapabilities;
054 import org.w3c.dom.Element;
055
056 /**
057 * This is the bean class for the WAS GetCapabilities operation.
058 *
059 * @author <a href="mailto:schmitz@lat-lon.de">Andreas Schmitz</a>
060 * @author last edited by: $Author: apoth $
061 *
062 * @version 2.0, $Revision: 9348 $, $Date: 2007-12-27 17:59:14 +0100 (Do, 27 Dez 2007) $
063 *
064 * @since 2.0
065 */
066
067 public class WASGetCapabilities extends GetCapabilities {
068
069 private static final long serialVersionUID = -5377481260861904187L;
070
071 private static final String SERVICE = "WAS";
072
073 private static final ILogger LOG = LoggerFactory.getLogger(WASGetCapabilities.class);
074
075 /**
076 * @param id
077 * the request id
078 * @param version
079 * @param updateSequence
080 * @param acceptVersions
081 * @param sections
082 * @param acceptFormats
083 * @param vendoreSpec
084 */
085 public WASGetCapabilities( String id, String version, String updateSequence,
086 String[] acceptVersions, String[] sections, String[] acceptFormats,
087 Map<String,String> vendoreSpec) {
088 super( id, version, updateSequence, acceptVersions, sections, acceptFormats, vendoreSpec );
089 }
090
091 /**
092 * @param id the request id
093 * @param keyValues
094 */
095 public WASGetCapabilities( String id, Map<String, String> keyValues ){
096 super( id, getParam( "VERSION", keyValues, null ), null, null, null, null, keyValues );
097 }
098
099 /* (non-Javadoc)
100 * @see org.deegree.ogcwebservices.OGCWebServiceRequest#getServiceName()
101 */
102 public String getServiceName() {
103 return SERVICE;
104 }
105
106 /**
107 * @param id
108 * @param documentElement
109 * @return a new instance of this class
110 * @throws OGCWebServiceException
111 */
112 public static OGCWebServiceRequest create( String id, Element documentElement )
113 throws OGCWebServiceException {
114
115
116 WASGetCapabilities res = null;
117 try {
118 res = new WASGetCapabilitiesDocument().parseCapabilities( id, documentElement );
119 } catch ( XMLParsingException e ) {
120 LOG.logError( e.getMessage(), e );
121 throw new OGCWebServiceException( e.getMessage() );
122 }
123
124
125 return res;
126 }
127
128 /**
129 * @param id
130 * @param kvp
131 * @return a new instance of this class
132 */
133 public static OGCWebServiceRequest create( String id, Map<String, String> kvp ) {
134 return new WASGetCapabilities(id, kvp);
135 }
136
137 }