001package org.kuali.common.util.log4j;
002
003import java.io.File;
004import java.util.Properties;
005
006import org.kuali.common.util.log4j.model.Log4JContext;
007import org.w3c.dom.Element;
008
009/**
010 * @deprecated
011 */
012@Deprecated
013public interface Log4JService {
014
015        void reset();
016
017        void configure(Log4JContext context);
018
019        String toXml(Log4JContext context);
020
021        void store(File file, Log4JContext context);
022
023        void configure(Properties properties);
024
025        void configure(Element element);
026
027        void configure(String location);
028
029}