001    //$HeadURL: svn+ssh://rbezema@svn.wald.intevation.org/deegree/base/branches/2.2_testing/src/org/deegree/ogcwebservices/csw/capabilities/CatalogueCapabilities.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.csw.capabilities;
045    
046    import java.io.IOException;
047    import java.net.URL;
048    
049    import org.deegree.model.filterencoding.capabilities.FilterCapabilities;
050    import org.deegree.ogcwebservices.getcapabilities.Contents;
051    import org.deegree.ogcwebservices.getcapabilities.InvalidCapabilitiesException;
052    import org.deegree.ogcwebservices.getcapabilities.OGCCapabilities;
053    import org.deegree.ogcwebservices.getcapabilities.OperationsMetadata;
054    import org.deegree.ogcwebservices.getcapabilities.ServiceIdentification;
055    import org.deegree.ogcwebservices.getcapabilities.ServiceProvider;
056    import org.deegree.owscommon.OWSCommonCapabilities;
057    import org.xml.sax.SAXException;
058    
059    /**
060     * Represents the capabilities for an OGC-CSW 2.0.0 compliant service instance.
061     * 
062     * @author <a href="mailto:mschneider@lat-lon.de">Markus Schneider </a>
063     * @author last edited by: $Author: apoth $
064     * 
065     * @version $Revision: 9345 $, $Date: 2007-12-27 17:22:25 +0100 (Do, 27 Dez 2007) $
066     * 
067     */
068    
069    public class CatalogueCapabilities extends OWSCommonCapabilities {
070    
071        /**
072         * 
073         */
074        private static final long serialVersionUID = 1351565525170636799L;
075    
076        private FilterCapabilities filterCapabilities;
077    
078        private EBRIMCapabilities ebrimCaps;
079    
080        /**
081         * Creates catalog capabilities from a URL.
082         * 
083         * @param url
084         *            location of the capabilities file
085         * @return catalog capabilities
086         * @throws IOException
087         * @throws SAXException
088         * @throws InvalidCapabilitiesException
089         */
090        public static OGCCapabilities createCapabilities( URL url )
091                                throws IOException, SAXException, InvalidCapabilitiesException {
092            OGCCapabilities capabilities = null;
093            CatalogueCapabilitiesDocument capabilitiesDoc = new CatalogueCapabilitiesDocument();
094            capabilitiesDoc.load( url );
095            capabilities = capabilitiesDoc.parseCapabilities();
096            return capabilities;
097        }
098    
099        /**
100         * Generates a new CatalogCapabilities instance from the given parameters.
101         * 
102         * @param version
103         * @param updateSequence
104         * @param serviceIdentification
105         * @param serviceProvider
106         * @param operationsMetadata
107         * @param contents
108         * @param filterCapabilities
109         */
110        public CatalogueCapabilities( String version, String updateSequence,
111                                      ServiceIdentification serviceIdentification,
112                                      ServiceProvider serviceProvider,
113                                      OperationsMetadata operationsMetadata, Contents contents,
114                                      FilterCapabilities filterCapabilities ) {
115            super( version, updateSequence, serviceIdentification, serviceProvider, operationsMetadata,
116                   contents );
117            this.filterCapabilities = filterCapabilities;
118        }
119    
120        /**
121         * Generates a new CatalogCapabilities instance from the given parameters.
122         * 
123         * @param version
124         * @param updateSequence
125         * @param serviceIdentification
126         * @param serviceProvider
127         * @param operationsMetadata
128         * @param contents
129         * @param filterCapabilities
130         * @param ebrimCaps
131         *            the specified ebrim extensions
132         */
133        public CatalogueCapabilities( String version, String updateSequence,
134                                      ServiceIdentification serviceIdentification,
135                                      ServiceProvider serviceProvider,
136                                      OperationsMetadata operationsMetadata, Contents contents,
137                                      FilterCapabilities filterCapabilities, EBRIMCapabilities ebrimCaps ) {
138            super( version, updateSequence, serviceIdentification, serviceProvider, operationsMetadata,
139                   contents );
140            this.filterCapabilities = filterCapabilities;
141            this.ebrimCaps = ebrimCaps;
142        }
143    
144        /**
145         * Returns the FilterCapabilites section of the capabilities.
146         * 
147         * @return the FilterCapabilites section of the capabilities
148         */
149        public FilterCapabilities getFilterCapabilities() {
150            return filterCapabilities;
151        }
152    
153        /**
154         * @return the ebrimCaps specified by the ogc ebrim-extension.
155         */
156        public EBRIMCapabilities getEbrimCaps() {
157            return ebrimCaps;
158        }
159    
160    }