View Javadoc

1   /*
2    * Copyright (c) 2006-2007 Creative Sphere Limited.
3    * All rights reserved. This program and the accompanying materials
4    * are made available under the terms of the Eclipse Public License v1.0
5    * which accompanies this distribution, and is available at
6    * http://www.eclipse.org/legal/epl-v10.html
7    *
8    * Contributors:
9    *
10   *   Creative Sphere - initial API and implementation
11   *
12   */
13  package org.abstracthorizon.danube.webdav.xml.dav;
14  
15  import org.abstracthorizon.danube.webdav.xml.XMLParserHandler;
16  import org.abstracthorizon.danube.webdav.xml.dav.request.AbstractSimpleXMLHandler;
17  
18  /**
19   * WebDAV abstract XML parser
20   *
21   * @author Daniel Sendula
22   */
23  public class DAVAbstractXMLParser extends AbstractSimpleXMLHandler {
24  
25      /** Factory to create requred objects */
26      protected DAVFactory davFactory;
27  
28      /**
29       * Constructor
30       */
31      protected DAVAbstractXMLParser() {
32      }
33  
34      /**
35       * Constructor
36       * @param parent parent parser handler
37       * @param davFactory factory
38       */
39      public DAVAbstractXMLParser(XMLParserHandler parent, DAVFactory davFactory) {
40          super(parent);
41          this.davFactory = davFactory;
42      }
43  
44  }