org/objectweb/proactive/core/util/log/Loggers.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.util.log;
00032 
00033 
00040 public interface Loggers {
00041     static final public String CORE = "proactive";
00042     static final public String CLASSLOADING = "proactive.classloading";
00043     static final public String EVENTS = "proactive.events";
00044     static final public String RUNTIME = "proactive.runtime";
00045     static final public String NODE = RUNTIME + ".node";
00046     static final public String BODY = "proactive.body";
00047     static final public String MOP = "proactive.mop";
00048     public static final String SYNC_CALL = "proactive.sync_call";
00049     static final public String GROUPS = "proactive.groups";
00050     public static final String NFE = "proactive.nfe";
00051     public static final String GC = CORE + ".gc";
00052     public static final String HTTP_TRANSPORT = "proactive.communication.transport.http";
00053     public static final String MIGRATION = "proactive.migration";
00054     public static final String REQUESTS = "proactive.communication.requests";
00055     public static final String JINI = "proactive.jini";
00056     static final public String UTIL = "proactive.util";
00057     static final public String LOG = "proactive.util.log";
00058     static final public String XML = "proactive.xml";
00059     static final public String STUB_GENERATION = "proactive.mop.stubgeneration";
00060     static final public String RMI = "proactive.communication.rmi";
00061     static final public String SSH = "proactive.communication.ssh";
00062     static final public String COMPONENTS = "proactive.components";
00063     static final public String COMPONENTS_CONTROLLERS = COMPONENTS +
00064         ".controllers";
00065     static final public String COMPONENTS_REQUESTS = COMPONENTS + ".requests";
00066     static final public String COMPONENTS_ACTIVITY = COMPONENTS + ".activity";
00067     static final public String COMPONENTS_GEN_ITFS = COMPONENTS +".gen.interface";
00068     static final public String COMPONENTS_GEN_ANNOTATION = COMPONENTS +".gen.annotation";
00069     static final public String COMPONENTS_ADL = COMPONENTS + ".adl";
00070     static final public String COMPONENTS_GUI = COMPONENTS + ".gui";
00071     static final public String COMPONENTS_MULTICAST = COMPONENTS + ".multicast";
00072     static final public String COMPONENTS_GATHERCAST = COMPONENTS + ".gathercast";
00073     static final public String DEPLOYMENT = "proactive.deployment";
00074     static final public String DEPLOYMENT_PROCESS = DEPLOYMENT + ".process";
00075     static final public String DEPLOYMENT_LOG = DEPLOYMENT + ".log";
00076     static final public String DEPLOYMENT_FILETRANSFER = "proactive.deployment.filetransfer";
00077     static final public String FILETRANSFER = "proactive.filetransfer";
00078     public static final String LOAD_BALANCING = "proactive.loadbalancing";
00079     public static final String IC2D = "proactive.ic2d";
00080     public static final String EXAMPLES = "proactive.examples";
00081 
00082     // P2P loggers
00083     public static final String P2P = "proactive.p2p";
00084     public static final String P2P_STARTSERVICE = P2P + ".startservice";
00085     public static final String P2P_VN = P2P + ".vn"; //descriptor
00086     public static final String P2P_DESC_SERV = P2P_VN + ".service"; // threads, nodes lookup
00087     public static final String P2P_SERVICE = P2P + ".service";
00088     public static final String P2P_NODES = P2P + ".nodes"; // lookup and nodes sharing
00089     public static final String P2P_ACQUAINTANCES = P2P + ".acquaintances";
00090     public static final String P2P_FIRST_CONTACT = P2P + ".first_contact";
00091     public static final String P2P_SKELETONS = P2P + ".skeletons";
00092     public static final String P2P_SKELETONS_WORKER = P2P_SKELETONS +
00093         ".worker";
00094     public static final String P2P_SKELETONS_MANAGER = P2P_SKELETONS +
00095         ".manager";
00096     public static final String P2P_DAEMON = P2P + ".daemon";
00097 
00098     // Security loggers
00099     public static final String SECURITY = "proactive.security";
00100     public static final String SECURITY_NODE = SECURITY + ".node";
00101     public static final String SECURITY_SESSION = SECURITY + ".session";
00102     public static final String SECURITY_BODY = SECURITY + ".body";
00103     public static final String SECURITY_MANAGER = SECURITY + ".manager";
00104     public static final String SECURITY_REQUEST = SECURITY + ".request";
00105     public static final String SECURITY_RUNTIME = SECURITY + ".runtime";
00106     public static final String SECURITY_DOMAIN = SECURITY + ".domain";
00107     public static final String SECURITY_POLICY = SECURITY + ".policy";
00108     public static final String SECURITY_POLICYSERVER = SECURITY +
00109         ".policyserver";
00110     public static final String SECURITY_CRYPTO = SECURITY + ".crypto";
00111     public static final String SECURITY_PSM = SECURITY + ".psm";
00112 
00113     // Fault-tolerance loggers
00114     public static final String FAULT_TOLERANCE = "proactive.ft";
00115     public static final String FAULT_TOLERANCE_CIC = FAULT_TOLERANCE + ".cic";
00116     public static final String FAULT_TOLERANCE_PML = FAULT_TOLERANCE + ".pml";
00117 
00118     // MPI loggers
00119     static final public String MPI = "proactive.mpi";
00120     static final public String MPI_CONTROL = MPI + ".control";
00121     static final public String MPI_CONTROL_MANAGER = MPI_CONTROL + ".control";
00122     static final public String MPI_CONTROL_COUPLING = MPI_CONTROL +
00123         ".coupling";
00124 
00125     // Scilab loggers
00126     public static final String SCILAB = "proactive.scilab";
00127     public static final String SCILAB_DEPLOY = SCILAB + ".deploy";
00128     public static final String SCILAB_SERVICE = SCILAB + ".service";
00129     public static final String SCILAB_WORKER = SCILAB + ".worker";
00130     public static final String SCILAB_TASK = SCILAB + ".task";
00131 
00132     // Scheduler loggers
00133     public static final String SCHEDULER = "proactive.scheduler";
00134     public static final String SCHEDULER_COMMAND_LISTENER = SCHEDULER + ".commandlistener";
00135     public static final String TASK_SCHEDULER = "proactive.taskscheduler";
00136     public static final String JOB_TEMPLATE = SCHEDULER + ".jobTemplate";
00137     public static final String RESSOURCE_MANAGER = SCHEDULER + ".ressourceManager";
00138     public static final String RESSOURCE_LISTENER = SCHEDULER + ".ressourceListener";
00139     public static final String JOB_MANAGER = SCHEDULER + ".jobManager";
00140 
00141     // Skeleton loggers
00142     static final public String SKELETONS = CORE+".skeletons";
00143     static final public String SKELETONS_STRUCTURE = SKELETONS+".structure";
00144     static final public String SKELETONS_MANAGER = SKELETONS+".manager";
00145     static final public String SKELETONS_KERNEL = SKELETONS+".kernel";
00146     static final public String SKELETONS_APPLICATION = SKELETONS+".application";
00147 }

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