001: /*
002: * $Header: /export/home/cvsroot/MyPersonalizerRepository/MyPersonalizer/Subsystems/Portal/Sources/es/udc/mypersonalizer/portal/config/PortalConfig.java,v 1.1.1.1 2004/03/25 12:08:41 fbellas Exp $
003: * $Revision: 1.1.1.1 $
004: * $Date: 2004/03/25 12:08:41 $
005: *
006: * =============================================================================
007: *
008: * Copyright (c) 2003, The MyPersonalizer Development Group
009: * (http://www.tic.udc.es/~fbellas/mypersonalizer/index.html) at
010: * University Of A Coruna
011: * All rights reserved.
012: *
013: * Redistribution and use in source and binary forms, with or without
014: * modification, are permitted provided that the following conditions are met:
015: *
016: * - Redistributions of source code must retain the above copyright notice,
017: * this list of conditions and the following disclaimer.
018: *
019: * - Redistributions in binary form must reproduce the above copyright notice,
020: * this list of conditions and the following disclaimer in the documentation
021: * and/or other materials provided with the distribution.
022: *
023: * - Neither the name of the University Of A Coruna nor the names of its
024: * contributors may be used to endorse or promote products derived from
025: * this software without specific prior written permission.
026: *
027: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
028: * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
029: * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
030: * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
031: * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
032: * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
033: * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
034: * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
035: * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
036: * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
037: * POSSIBILITY OF SUCH DAMAGE.
038: *
039: */
040:
041: package es.udc.mypersonalizer.portal.config;
042:
043: import es.udc.mypersonalizer.kernel.util.config.Configuration;
044:
045: /**
046: * This is the root configuration bean for the Portal subsystem. It handles all
047: * configuration belonging to this subsystem and has references to three
048: * 'child' configurations:
049: * <ul>
050: * <li>The <b>Controller</b> configuration, handled by a {@link
051: * PortalControllerConfig} object.</li>
052: * <li>The <b>Model</b> configuration, handled by a {@link PortalModelConfig}
053: * object.</li>
054: * <li>The <b>Utilities</b> configuration, handled by a {@link
055: * PortalUtilConfig} object.</li>
056: * </ul>
057: *
058: * @author Daniel Fernandez
059: * @since 1.0
060: */
061: public class PortalConfig implements Configuration {
062:
063: /**
064: * The Portal Controller configuration.
065: */
066: private PortalControllerConfig portalControllerConfig = null;
067:
068: /**
069: * The Portal Model configuration.
070: */
071: private PortalModelConfig portalModelConfig = null;
072:
073: /**
074: * The Portal Utilities configuration.
075: */
076: private PortalUtilConfig portalUtilConfig = null;
077:
078: /** Creates a new instance of PortalConfig */
079: public PortalConfig() {
080: }
081:
082: /**
083: * Returns the configuration of the Portal's controller in a {@link
084: * PortalControllerConfig} object.
085: *
086: * @return a PortalControllerConfig with the controller configuration.
087: */
088: public PortalControllerConfig getPortalControllerConfig() {
089: return portalControllerConfig;
090: }
091:
092: /**
093: * Sets a new configuration for the Portal controller.
094: *
095: * @param portalControllerConfig the new controller configuration.
096: */
097: public void setPortalControllerConfig(
098: PortalControllerConfig portalControllerConfig) {
099: this .portalControllerConfig = portalControllerConfig;
100: }
101:
102: /**
103: * Returns the Portal model configuration in a {@link PortalModelConfig}
104: * object.
105: *
106: * @return a PortalModelConfig object with the Portal model configuration.
107: */
108: public PortalModelConfig getPortalModelConfig() {
109: return portalModelConfig;
110: }
111:
112: /**
113: * Sets a new Portal model configuration.
114: *
115: * @param portalModelConfig the new Portal model configuration.
116: */
117: public void setPortalModelConfig(PortalModelConfig portalModelConfig) {
118: this .portalModelConfig = portalModelConfig;
119: }
120:
121: /**
122: * Returns the Portal utilities configuration in a {@link PortalUtilConfig}
123: * object.
124: *
125: * @return a PortalUtilConfig object with the Portal utilities
126: * configuration.
127: */
128: public PortalUtilConfig getPortalUtilConfig() {
129: return portalUtilConfig;
130: }
131:
132: /**
133: * Sets a new Portal utilities configuration.
134: *
135: * @param portalUtilConfig the new Portal utilities configuration.
136: */
137: public void setPortalUtilConfig(PortalUtilConfig portalUtilConfig) {
138: this.portalUtilConfig = portalUtilConfig;
139: }
140:
141: }
|