View Javadoc

1   /*
2    * Copyright 2001-2004 The Apache Software Foundation.
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *      http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  
17  package org.apache.log4j.xml;
18  
19  import org.apache.log4j.spi.Configurator;
20  import org.apache.log4j.spi.LoggerRepository;
21  
22  import javax.xml.parsers.FactoryConfigurationError;
23  import java.io.InputStream;
24  import java.io.Reader;
25  import java.net.URL;
26  import java.util.Properties;
27  
28  
29  import org.w3c.dom.Element;
30  
31  public class DOMConfigurator implements Configurator {
32  
33    public static void configure(Element element) {
34    }
35  
36    public static void configure(String filename) throws FactoryConfigurationError {
37    }
38  
39    static public void configure(URL url) throws FactoryConfigurationError {
40    }
41  
42    static public void configureAndWatch(String configFilename) {
43    }
44  
45    public static void configureAndWatch(String configFilename, long delay) {
46    }
47  
48    public void doConfigure(Element element, LoggerRepository repository) {
49    }
50  
51    public void doConfigure(InputStream inputStream, LoggerRepository repository) throws FactoryConfigurationError {
52    }
53  
54    public void doConfigure(Reader reader, LoggerRepository repository) throws FactoryConfigurationError {
55    }
56  
57    public void doConfigure(String filename, LoggerRepository repository) {
58    }
59  
60    public void doConfigure(URL url, LoggerRepository repository) {
61    }
62  
63    public static String subst(String value, Properties props) {
64      return value;
65    }
66  
67  }