001: /*
002: * $Header: /export/home/cvsroot/MyPersonalizerRepository/MyPersonalizer/Subsystems/Kernel/Sources/es/udc/mypersonalizer/kernel/config/KernelConfig.java,v 1.1.1.1 2004/03/25 12:08:38 fbellas Exp $
003: * $Revision: 1.1.1.1 $
004: * $Date: 2004/03/25 12:08:38 $
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.kernel.config;
042:
043: import es.udc.mypersonalizer.kernel.util.config.Configuration;
044:
045: /**
046: * This is the root configuration bean for the Kernel subsystem. It handles all
047: * configuration belonging to this subsystem and has references to two 'child'
048: * configurations:
049: * <ul>
050: * <li>The <b>Controller</b> configuration, handled by a {@link
051: * KernelControllerConfig} object.</li>
052: * <li>The <b>Model</b> configuration, handled by a {@link KernelModelConfig}
053: * object.</li>
054: * </ul>
055: *
056: * @author Daniel Fernandez
057: * @since 1.0
058: */
059: public class KernelConfig implements Configuration {
060:
061: /**
062: * The Kernel Controller configuration.
063: */
064: private KernelControllerConfig kernelControllerConfig = null;
065:
066: /**
067: * The Kernel Model configuration.
068: */
069: private KernelModelConfig kernelModelConfig = null;
070:
071: /**
072: * Creates a new instance of KernelConfig.
073: */
074: public KernelConfig() {
075: }
076:
077: /**
078: * Returns the configuration of the Kernel's controller in a {@link
079: * KernelControllerConfig} object.
080: *
081: * @return a KernelControllerConfig with the controller configuration.
082: */
083: public KernelControllerConfig getKernelControllerConfig() {
084: return kernelControllerConfig;
085: }
086:
087: /**
088: * Sets a new configuration for the Kernel controller.
089: *
090: * @param kernelControllerConfig the new controller configuration.
091: */
092: public void setKernelControllerConfig(
093: KernelControllerConfig kernelControllerConfig) {
094: this .kernelControllerConfig = kernelControllerConfig;
095: }
096:
097: /**
098: * Returns the Kernel model configuration in a {@link KernelModelConfig}
099: * object.
100: *
101: * @return a KernelModelConfig object with the Kernel model configuration.
102: */
103: public KernelModelConfig getKernelModelConfig() {
104: return kernelModelConfig;
105: }
106:
107: /**
108: * Sets a new Kernel model configuration.
109: *
110: * @param kernelModelConfig the new Kernel model configuration.
111: */
112: public void setKernelModelConfig(KernelModelConfig kernelModelConfig) {
113: this.kernelModelConfig = kernelModelConfig;
114: }
115:
116: }
|