01: //$HeadURL: https://svn.wald.intevation.org/svn/deegree/base/trunk/src/org/deegree/portal/context/DirectoryAccess.java $
02: /*---------------- FILE HEADER ------------------------------------------
03:
04: This file is part of deegree.
05: Copyright (C) 2001-2008 by:
06: EXSE, Department of Geography, University of Bonn
07: http://www.giub.uni-bonn.de/deegree/
08: lat/lon GmbH
09: http://www.lat-lon.de
10:
11: This library is free software; you can redistribute it and/or
12: modify it under the terms of the GNU Lesser General Public
13: License as published by the Free Software Foundation; either
14: version 2.1 of the License, or (at your option) any later version.
15:
16: This library is distributed in the hope that it will be useful,
17: but WITHOUT ANY WARRANTY; without even the implied warranty of
18: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19: Lesser General Public License for more details.
20:
21: You should have received a copy of the GNU Lesser General Public
22: License along with this library; if not, write to the Free Software
23: Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24:
25: Contact:
26:
27: Andreas Poth
28: lat/lon GmbH
29: Aennchenstr. 19
30: 53115 Bonn
31: Germany
32: E-Mail: poth@lat-lon.de
33:
34: Prof. Dr. Klaus Greve
35: Department of Geography
36: University of Bonn
37: Meckenheimer Allee 166
38: 53115 Bonn
39: Germany
40: E-Mail: greve@giub.uni-bonn.de
41:
42:
43: ---------------------------------------------------------------------------*/
44: package org.deegree.portal.context;
45:
46: import java.net.URL;
47:
48: /**
49: * Implements the description of the access to directories used by
50: * a deegree web map context
51: *
52: * @version $Revision: 9346 $
53: * @author <a href="mailto:poth@lat-lon.de">Andreas Poth</a>
54: */
55: public class DirectoryAccess {
56:
57: private URL onlineResource = null;
58: private String directoryName = null;
59:
60: /**
61: * @param directoryName
62: * @param onlineResource
63: */
64: DirectoryAccess(String directoryName, URL onlineResource) {
65: this .directoryName = directoryName;
66: this .onlineResource = onlineResource;
67: }
68:
69: /**
70: * @return Returns the directoryName.
71: */
72: public String getDirectoryName() {
73: return directoryName;
74: }
75:
76: /**
77: * @param directoryName The directoryName to set.
78: */
79: public void setDirectoryName(String directoryName) {
80: this .directoryName = directoryName;
81: }
82:
83: /**
84: * @return Returns the onlineResource.
85: */
86: public URL getOnlineResource() {
87: return onlineResource;
88: }
89:
90: /**
91: * @param onlineResource The onlineResource to set.
92: */
93: public void setOnlineResource(URL onlineResource) {
94: this.onlineResource = onlineResource;
95: }
96:
97: }
|