org/objectweb/proactive/core/component/ControllerDescription.java

00001 /* 
00002  * ################################################################
00003  * 
00004  * ProActive: The Java(TM) library for Parallel, Distributed, 
00005  *            Concurrent computing with Security and Mobility
00006  * 
00007  * Copyright (C) 1997-2007 INRIA/University of Nice-Sophia Antipolis
00008  * Contact: proactive@objectweb.org
00009  * 
00010  * This library is free software; you can redistribute it and/or
00011  * modify it under the terms of the GNU Lesser General Public
00012  * License as published by the Free Software Foundation; either
00013  * version 2.1 of the License, or any later version.
00014  *  
00015  * This library is distributed in the hope that it will be useful,
00016  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00017  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00018  * Lesser General Public License for more details.
00019  * 
00020  * You should have received a copy of the GNU Lesser General Public
00021  * License along with this library; if not, write to the Free Software
00022  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
00023  * USA
00024  *  
00025  *  Initial developer(s):               The ProActive Team
00026  *                        http://www.inria.fr/oasis/ProActive/contacts.html
00027  *  Contributor(s): 
00028  * 
00029  * ################################################################
00030  */ 
00031 package org.objectweb.proactive.core.component;
00032 
00033 import java.io.Serializable;
00034 import java.util.Map;
00035 
00036 import org.objectweb.proactive.core.component.Constants;
00037 import org.objectweb.proactive.core.component.identity.ProActiveComponentImpl;
00038 
00039 
00058 public class ControllerDescription implements Serializable {
00059     private String hierarchicalType;
00060     private String name;
00061     private boolean synchronous = false;
00062     public static final String DEFAULT_COMPONENT_CONFIG_FILE_LOCATION = "/org/objectweb/proactive/core/component/config/default-component-config.xml";
00063     private String controllersConfigFileLocation;
00064     private Map controllersSignatures;
00065 
00070     public ControllerDescription() {
00071         this((String) null, (String) null, (String) null, false);
00072     }
00073 
00079     public ControllerDescription(String name, String hierarchicalType) {
00080         this(name, hierarchicalType, null, false);
00081     }
00082 
00089     public ControllerDescription(String name, String hierarchicalType,
00090         boolean synchronous) {
00091         this(name, hierarchicalType, null, synchronous);
00092     }
00093 
00100     public ControllerDescription(String name, String hierarchicalType,
00101         String controllersConfigFileLocation) {
00102         this(name, hierarchicalType, controllersConfigFileLocation, false);
00103     }
00104 
00112     public ControllerDescription(String name, String hierarchicalType,
00113         String controllersConfigFileLocation,
00114         String interceptorsConfigFileLocation) {
00115         this(name, hierarchicalType, controllersConfigFileLocation, false);
00116     }
00117 
00125     public ControllerDescription(String name, String hierarchicalType,
00126         String controllersConfigFileLocation, boolean synchronous) {
00127         this.hierarchicalType = hierarchicalType;
00128         this.name = name;
00129         if (!Constants.PRIMITIVE.equals(hierarchicalType)) {
00130             this.synchronous = synchronous;
00131         }
00132         if (controllersConfigFileLocation == null) {
00133             this.controllersConfigFileLocation = DEFAULT_COMPONENT_CONFIG_FILE_LOCATION;
00134         } else {
00135             this.controllersConfigFileLocation = controllersConfigFileLocation;
00136         }
00137         controllersSignatures = ProActiveComponentImpl.loadControllerConfiguration(this.controllersConfigFileLocation).getControllers();
00138     }
00139 
00144     public ControllerDescription(ControllerDescription controllerDesc) {
00145         this(controllerDesc.name, controllerDesc.hierarchicalType, controllerDesc.controllersConfigFileLocation, controllerDesc.synchronous);
00146     }
00147 
00152     public String getHierarchicalType() {
00153         return hierarchicalType;
00154     }
00155 
00160     public void setHierarchicalType(String string) {
00161         hierarchicalType = string;
00162     }
00163 
00168     public String getName() {
00169         return name;
00170     }
00171 
00176     public void setName(String name) {
00177         this.name = name;
00178     }
00179 
00184     public boolean isSynchronous() {
00185         return synchronous;
00186     }
00187 
00192     public String getControllersConfigFileLocation() {
00193         return controllersConfigFileLocation;
00194     }
00195     
00196     public Map getControllersSignatures() {
00197         return controllersSignatures;
00198     }
00199 }

Generated on Mon Jan 22 15:16:06 2007 for ProActive by  doxygen 1.5.1