001    //$HeadURL: https://svn.wald.intevation.org/svn/deegree/base/branches/2.3_testing/src/org/deegree/owscommon_new/Operation.java $
002    /*----------------------------------------------------------------------------
003     This file is part of deegree, http://deegree.org/
004     Copyright (C) 2001-2009 by:
005       Department of Geography, University of Bonn
006     and
007       lat/lon GmbH
008    
009     This library is free software; you can redistribute it and/or modify it under
010     the terms of the GNU Lesser General Public License as published by the Free
011     Software Foundation; either version 2.1 of the License, or (at your option)
012     any later version.
013     This library is distributed in the hope that it will be useful, but WITHOUT
014     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
015     FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
016     details.
017     You should have received a copy of the GNU Lesser General Public License
018     along with this library; if not, write to the Free Software Foundation, Inc.,
019     59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
020    
021     Contact information:
022    
023     lat/lon GmbH
024     Aennchenstr. 19, 53177 Bonn
025     Germany
026     http://lat-lon.de/
027    
028     Department of Geography, University of Bonn
029     Prof. Dr. Klaus Greve
030     Postfach 1147, 53001 Bonn
031     Germany
032     http://www.geographie.uni-bonn.de/deegree/
033    
034     e-mail: info@deegree.org
035    ----------------------------------------------------------------------------*/
036    package org.deegree.owscommon_new;
037    
038    import java.util.List;
039    
040    import org.deegree.datatypes.QualifiedName;
041    
042    /**
043     * <code>Operation</code> stores the contents of an Operation element according to the OWS common
044     * specification version 1.0.0.
045     *
046     * @author <a href="mailto:schmitz@lat-lon.de">Andreas Schmitz</a>
047     * @author last edited by: $Author: mschneider $
048     *
049     * @version 2.0, $Revision: 18195 $, $Date: 2009-06-18 17:55:39 +0200 (Do, 18. Jun 2009) $
050     *
051     * @since 2.0
052     */
053    
054    public class Operation {
055    
056        private QualifiedName name = null;
057    
058        private List<DCP> dcpList = null;
059    
060        private List<Parameter> parameters = null;
061    
062        private List<DomainType> constraints = null;
063    
064        private Object metadata = null;
065    
066        private String description = null;
067    
068        /**
069         * Standard constructor that initializes all encapsulated data.
070         *
071         * @param name
072         * @param dcpList
073         * @param parameters
074         * @param constraints
075         * @param metadata
076         * @param description
077         */
078        public Operation( QualifiedName name, List<DCP> dcpList, List<Parameter> parameters, List<DomainType> constraints,
079                          Object metadata, String description ) {
080            this.name = name;
081            this.dcpList = dcpList;
082            this.parameters = parameters;
083            this.constraints = constraints;
084            this.metadata = metadata;
085            this.description = description;
086        }
087    
088        /**
089         * @return Returns the constraints.
090         */
091        public List<DomainType> getConstraints() {
092            return constraints;
093        }
094    
095        /**
096         * @return Returns the dCP.
097         */
098        public List<DCP> getDCP() {
099            return dcpList;
100        }
101    
102        /**
103         * @return Returns the description.
104         */
105        public String getDescription() {
106            return description;
107        }
108    
109        /**
110         * @return Returns the metadata.
111         */
112        public Object getMetadata() {
113            return metadata;
114        }
115    
116        /**
117         * @return Returns the parameters.
118         */
119        public List<Parameter> getParameters() {
120            return parameters;
121        }
122    
123        /**
124         * @param name
125         * @return the <code>DomainType</code> with the specified name or null, if there is no
126         *         constraint with that name.
127         */
128        public DomainType getConstraint( QualifiedName name ) {
129            for ( DomainType constraint : constraints ) {
130                if ( constraint.getName().equals( name ) ) {
131                    return constraint;
132                }
133            }
134    
135            return null;
136        }
137    
138        /**
139         * @param name
140         * @return the <code>Parameter</code> with the specified name or null, if there is no
141         *         parameter with that name. This method only tests Parameters that are
142         *         <code>DomainType</code>s.
143         */
144        public Parameter getParameter( QualifiedName name ) {
145            for ( Parameter parameter : parameters ) {
146                if ( parameter instanceof DomainType ) {
147                    if ( ( (DomainType) parameter ).getName().equals( name ) ) {
148                        return parameter;
149                    }
150                }
151            }
152    
153            return null;
154        }
155    
156        /**
157         * @return Returns the name.
158         */
159        public QualifiedName getName() {
160            return name;
161        }
162    
163    }