1 package org.kuali.common.util.log4j;
2
3 import java.io.File;
4 import java.util.Properties;
5
6 import org.kuali.common.util.log4j.model.Log4JContext;
7 import org.w3c.dom.Element;
8
9
10
11
12 @Deprecated
13 public interface Log4JService {
14
15 void reset();
16
17 void configure(Log4JContext context);
18
19 String toXml(Log4JContext context);
20
21 void store(File file, Log4JContext context);
22
23 void configure(Properties properties);
24
25 void configure(Element element);
26
27 void configure(String location);
28
29 }