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  package org.apache.log4j.xml;
17  
18  import org.apache.log4j.spi.Configurator;
19  import org.apache.log4j.spi.LoggerRepository;
20  
21  import javax.xml.parsers.FactoryConfigurationError;
22  import java.io.InputStream;
23  import java.io.Reader;
24  import java.net.URL;
25  import java.util.Properties;
26  
27  
28  import org.w3c.dom.Element;
29  
30  public class DOMConfigurator implements Configurator {
31  
32    public static void configure(Element element) {
33    }
34  
35    public static void configure(String filename) throws FactoryConfigurationError {
36    }
37  
38    static public void configure(URL url) throws FactoryConfigurationError {
39    }
40  
41    static public void configureAndWatch(String configFilename) {
42    }
43  
44    public static void configureAndWatch(String configFilename, long delay) {
45    }
46  
47    public void doConfigure(Element element, LoggerRepository repository) {
48    }
49  
50    public void doConfigure(InputStream inputStream, LoggerRepository repository) throws FactoryConfigurationError {
51    }
52  
53    public void doConfigure(Reader reader, LoggerRepository repository) throws FactoryConfigurationError {
54    }
55  
56    public void doConfigure(String filename, LoggerRepository repository) {
57    }
58  
59    public void doConfigure(URL url, LoggerRepository repository) {
60    }
61  
62    public static String subst(String value, Properties props) {
63      return value;
64    }
65  
66  }