001    //$HeadURL: svn+ssh://rbezema@svn.wald.intevation.org/deegree/base/tags/2.1/src/org/deegree/ogcwebservices/wpvs/configuration/RemoteWCSDataSource.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/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     Aennchenstraße 19
030     53177 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.wpvs.configuration;
045    
046    import java.awt.Color;
047    
048    import org.deegree.datatypes.QualifiedName;
049    import org.deegree.model.spatialschema.Surface;
050    import org.deegree.ogcwebservices.wcs.getcoverage.GetCoverage;
051    import org.deegree.ogcwebservices.wpvs.capabilities.OWSCapabilities;
052    
053    /**
054     * This class represents a remote WCS dataSource object, but doesn't do anything actually.
055     * 
056     * @author <a href="mailto:mays@lat-lon.de">Judit Mays</a>
057     * @author last edited by: $Author: bezema $
058     * 
059     * @version $Revision: 6259 $, $Date: 2007-03-20 10:15:15 +0100 (Di, 20 Mär 2007) $
060     * 
061     */
062    public class RemoteWCSDataSource extends LocalWCSDataSource {
063            
064            /**
065             * Creates a new <code>RemoteWCSDataSource</code> object from the given parameters.
066             * 
067             * @param name
068             * @param owsCapabilities
069             * @param validArea
070             * @param minScaleDenominator
071             * @param maxScaleDenominator
072             * @param filterCondition a base request //TODO give an example
073             * @param transparentColors
074             */
075            public RemoteWCSDataSource( QualifiedName name, OWSCapabilities owsCapabilities, Surface validArea, 
076                                                                    double minScaleDenominator, double maxScaleDenominator, 
077                                                                    GetCoverage filterCondition, Color[] transparentColors ) {
078                    
079                    super( name, owsCapabilities, validArea, minScaleDenominator, 
080                               maxScaleDenominator, filterCondition, transparentColors );
081            this.setServiceType( AbstractDataSource.REMOTE_WCS );
082            }
083            
084    }
085    
086    /* ********************************************************************
087    Changes to this class. What the people have been up to:
088    $Log$
089    Revision 1.16  2007/03/06 15:48:07  bezema
090    changed the caching mechanism's of the Datasources. Also set the kkv option of the cvs repos
091    
092    Revision 1.15  2006/11/27 09:07:52  poth
093    JNI integration of proj4 has been removed. The CRS functionality now will be done by native deegree code.
094    
095    Revision 1.14  2006/11/23 11:46:40  bezema
096    The initial version of the new wpvs
097    
098    Revision 1.13  2006/08/29 19:54:14  poth
099    footer corrected
100    
101    Revision 1.12  2006/08/24 06:42:16  poth
102    File header corrected
103    
104    Revision 1.11  2006/06/20 07:45:21  taddei
105    datasources use quali names now
106    
107    Revision 1.10  2006/04/06 20:25:24  poth
108    *** empty log message ***
109    
110    Revision 1.9  2006/03/30 21:20:25  poth
111    *** empty log message ***
112    
113    Revision 1.8  2006/02/22 13:34:00  taddei
114    refactoring: added service, createOGCWebService; also better except handling
115    
116    Revision 1.7  2006/01/18 08:48:27  taddei
117    added getOGCWebService()
118    
119    Revision 1.6  2005/12/23 10:37:08  mays
120    add toString and change object type of filterCondition
121    
122    Revision 1.5  2005/12/07 09:45:14  mays
123    redesign of filterCondition request from String to Map form wcs and wms datasources
124    
125    Revision 1.4  2005/12/06 12:48:19  mays
126    move param filterCondition from subclasses to AbstractDataSource
127    
128    Revision 1.3  2005/12/05 09:42:07  mays
129    revision of comments
130    
131    Revision 1.2  2005/12/01 15:54:59  mays
132    omitted serviceType in call of constructor, replacing it in super() by corresponding field
133    
134    Revision 1.1  2005/12/01 12:08:47  mays
135    first implementation of new remote data source classes
136    
137    ********************************************************************** */