| java.rmi.server.UnicastRemoteObject org.objectweb.util.monolog.wrapper.remote.lib.MonologFactoryProxyImpl
MonologFactoryProxyImpl | public class MonologFactoryProxyImpl extends UnicastRemoteObject implements MonologFactoryProxy(Code) | | This class implements the MonologFactoryProxy interface as remote object. It
permits to configure loggers, handlers and levels on a monolog factory
author: S.Chassande-Barrioz |
Method Summary | |
public void | addHandlerToLogger(String handlername, String loggerName) | public void | addTopicToLogger(String topic, String loggerName) | public int | compareTo(String levelname1, String levelname2) | public boolean | createHandler(String hn, String handlertype) | public boolean | defineLevel(String name, int value) | public boolean | defineLevel(String name, String value) | public Map | getAllHandlerAttributes() | public Map | getHandlerAttributes(String handlername) | public String[] | getHandlerNames() | public Level | getLevel(String name) | public Level | getLevel(int value) | public Level[] | getLevels() | public LoggerInfo | getLogger(String loggername) | public LoggerInfo | getLogger(String loggername, String resourceBundleName) | public LoggerInfo[] | getLoggers() | public Properties | getMonologProperties() | public String | getResourceBundleName() | public void | register(String name) Register this object into the RMI registry of the current host. | public void | register(java.net.InetAddress host, String name) Register this object into a RMI registry.
Parameters: name - is the name under which this remote object will be registered Parameters: host - is the name of the host containing the RMI registry wherethis object has to be registered. | public void | removeAllHandlersFromLogger(String loggerName) | public boolean | removeHandler(String handlername) | public void | removeHandlerFromLogger(String handlerName, String loggerName) | public void | removeLevel(String name) | public void | removeTopicFromLogger(String topic, String loggerName) | public void | setAdditivity(boolean a, String loggerName) | public void | setHandlerAttribute(String handlername, String attributeName, String value) | public void | setLoggerLevel(int level, String loggerName) | public void | setLoggerLevel(String levelName, String loggerName) | public void | setMonologProperties(Properties p) | public void | setResourceBundleName(String resourceBundleName) |
MonologFactoryProxyImpl | public MonologFactoryProxyImpl() throws RemoteException(Code) | | Build a remote object managing the default MonologFactory registered
as current int the Monolog class.
|
MonologFactoryProxyImpl | public MonologFactoryProxyImpl(MonologFactory mf) throws RemoteException(Code) | | Build a remote object managing a MonologFactory.
Parameters: mf - is the monolog factory instance encapsulated into this remote object. |
MonologFactoryProxyImpl | public MonologFactoryProxyImpl(MonologFactory mf, String rmiName) throws RemoteException(Code) | | Build a remote object managing a MonologFactory. This object is registerd
into the RMI registry of the current host.
Parameters: mf - is the monolog factory instance encapsulated into this remote object. Parameters: rmiName - is the name under which this remote object will be registered |
register | public void register(String name) throws RemoteException(Code) | | Register this object into the RMI registry of the current host.
Parameters: name - is the name under which this remote object will be registered throws: RemoteException - |
register | public void register(java.net.InetAddress host, String name) throws RemoteException(Code) | | Register this object into a RMI registry.
Parameters: name - is the name under which this remote object will be registered Parameters: host - is the name of the host containing the RMI registry wherethis object has to be registered. throws: RemoteException - |
|
|