01: //$HeadURL: $
02: /*---------------- FILE HEADER ------------------------------------------
03: This file is part of deegree.
04: Copyright (C) 2001-2008 by:
05: Department of Geography, University of Bonn
06: http://www.giub.uni-bonn.de/deegree/
07: lat/lon GmbH
08: http://www.lat-lon.de
09:
10: This library is free software; you can redistribute it and/or
11: modify it under the terms of the GNU Lesser General Public
12: License as published by the Free Software Foundation; either
13: version 2.1 of the License, or (at your option) any later version.
14: This library is distributed in the hope that it will be useful,
15: but WITHOUT ANY WARRANTY; without even the implied warranty of
16: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17: Lesser General Public License for more details.
18: You should have received a copy of the GNU Lesser General Public
19: License along with this library; if not, write to the Free Software
20: Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21: Contact:
22:
23: Andreas Poth
24: lat/lon GmbH
25: Aennchenstr. 19
26: 53177 Bonn
27: Germany
28: E-Mail: poth@lat-lon.de
29:
30: Prof. Dr. Klaus Greve
31: Department of Geography
32: University of Bonn
33: Meckenheimer Allee 166
34: 53115 Bonn
35: Germany
36: E-Mail: greve@giub.uni-bonn.de
37: ---------------------------------------------------------------------------*/
38:
39: package org.deegree.ogcwebservices.wcts.capabilities;
40:
41: /**
42: * <code>InputOutputFormat</code> TODO add documentation here
43: *
44: * @author <a href="mailto:bezema@lat-lon.de">Rutger Bezema</a>
45: *
46: * @author last edited by: $Author:$
47: *
48: * @version $Revision:$, $Date:$
49: *
50: */
51: public class InputOutputFormat {
52:
53: private final String value;
54: private final boolean input;
55: private final boolean output;
56:
57: /**
58: * @param value
59: * @param input
60: * @param output
61: */
62: public InputOutputFormat(String value, boolean input, boolean output) {
63: this .value = value;
64: this .input = input;
65: this .output = output;
66:
67: }
68:
69: /**
70: * @return the value.
71: */
72: public final String getValue() {
73: return value;
74: }
75:
76: /**
77: * @return the input.
78: */
79: public final boolean canInput() {
80: return input;
81: }
82:
83: /**
84: * @return the output.
85: */
86: public final boolean canOutput() {
87: return output;
88: }
89:
90: }
|