KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jzonic > jlo > mbean > LogService


1 package org.jzonic.jlo.mbean;
2
3 /**
4  * Created by IntelliJ IDEA.
5  * User: Mecky
6  * Date: 17.05.2004
7  * Time: 15:02:32
8  * To change this template use File | Settings | File Templates.
9  */

10 public class LogService implements LogServiceMBean {
11
12     private String JavaDoc configName;
13
14     public LogService() {
15     }
16
17     public void setChannelMode(String JavaDoc channelName, boolean on) {
18     }
19
20     public String JavaDoc getConfigName() {
21             return configName;
22         }
23
24         public void setConfigName(String JavaDoc configName) {
25             this.configName = configName;
26         }
27
28 }
29
Popular Tags