001    // $HeadURL: /cvsroot/deegree/src/org/deegree/ogcwebservices/OGCWebService.java,v
002    // 1.7 2004/06/23 13:37:40 mschneider Exp $
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.ogcwebservices;
046    
047    import org.deegree.ogcwebservices.getcapabilities.OGCCapabilities;
048    
049    /**
050     * @author <a href="mailto:poth@lat-lon.de">Andreas Poth </a>
051     * @author last edited by: $Author: bezema $
052     * 
053     * @version $Revision: 6259 $, $Date: 2007-03-20 10:15:15 +0100 (Di, 20 Mär 2007) $
054     */
055    public interface OGCWebService {
056    
057        /**
058         * returns the capabilities of a OGC web service
059         * 
060         * @return the capabilities of a OGC web service
061         */
062        OGCCapabilities getCapabilities();
063    
064        /**
065         * the implementation of this method performs the handling of the passed OGCWebServiceEvent
066         * directly and returns the result to the calling class/ method
067         * 
068         * @param request
069         *            request (WMS, WCS, WFS, CSW, WFS-G, WMPS) to perform
070         * 
071         * @throws OGCWebServiceException
072         */
073        Object doService( OGCWebServiceRequest request )
074                                throws OGCWebServiceException;
075    
076    }
077    
078    /***************************************************************************************************
079     * <code>
080     Changes to this class. What the people have been up to: 
081     
082     $Log$
083     Revision 1.10  2007/02/27 13:43:58  wanhoff
084     fixed Javadoc @return tag, @throws tag and footer
085     
086     Revision 1.7 2004/06/23 13:37:40 mschneider 
087     More work on the CatalogConfiguration.
088     
089     Revision 1.6 2004/06/21 08:05:49 ap 
090     no message
091     
092     Revision 1.5 2004/06/18 08:33:31 ap 
093     no message
094     
095     Revision 1.4 2004/06/16 09:46:02 ap 
096     no message
097     
098     </code>
099     **************************************************************************************************/