KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencms > setup > xml > CmsXmlAddBackupResourceHandler


1 /*
2  * File : $Source: /usr/local/cvs/opencms/src/org/opencms/setup/xml/CmsXmlAddBackupResourceHandler.java,v $
3  * Date : $Date: 2006/03/27 14:52:44 $
4  * Version: $Revision: 1.2 $
5  *
6  * This library is part of OpenCms -
7  * the Open Source Content Mananagement System
8  *
9  * Copyright (c) 2005 Alkacon Software GmbH (http://www.alkacon.com)
10  *
11  * This library is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Lesser General Public
13  * License as published by the Free Software Foundation; either
14  * version 2.1 of the License, or (at your option) any later version.
15  *
16  * This library is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19  * Lesser General Public License for more details.
20  *
21  * For further information about Alkacon Software GmbH, please see the
22  * company website: http://www.alkacon.com
23  *
24  * For further information about OpenCms, please see the
25  * project website: http://www.opencms.org
26  *
27  * You should have received a copy of the GNU Lesser General Public
28  * License along with this library; if not, write to the Free Software
29  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30  */

31
32 package org.opencms.setup.xml;
33
34 import org.opencms.configuration.CmsConfigurationManager;
35 import org.opencms.configuration.CmsSystemConfiguration;
36 import org.opencms.configuration.I_CmsXmlConfiguration;
37 import org.opencms.file.CmsBackupResourceHandler;
38
39 import java.util.Collections JavaDoc;
40 import java.util.List JavaDoc;
41
42 import org.dom4j.Document;
43 import org.dom4j.Node;
44
45 /**
46  * Adds the new backup resource handler to the resource initialization handlers.<p>
47  *
48  * @author Michael Moossen
49  *
50  * @version $Revision: 1.2 $
51  *
52  * @since 6.1.8
53  */

54 public class CmsXmlAddBackupResourceHandler extends A_CmsSetupXmlUpdate {
55
56     /** List of xpaths to update. */
57     private List JavaDoc m_xpaths;
58
59     /**
60      * @see org.opencms.setup.xml.I_CmsSetupXmlUpdate#getName()
61      */

62     public String JavaDoc getName() {
63
64         return "Add new backup resource handler";
65     }
66
67     /**
68      * @see org.opencms.setup.xml.I_CmsSetupXmlUpdate#getXmlFilename()
69      */

70     public String JavaDoc getXmlFilename() {
71
72         return CmsSystemConfiguration.DEFAULT_XML_FILE_NAME;
73     }
74
75     /**
76      * @see org.opencms.setup.xml.A_CmsSetupXmlUpdate#executeUpdate(org.dom4j.Document, java.lang.String)
77      */

78     protected boolean executeUpdate(Document document, String JavaDoc xpath) {
79
80         Node node = document.selectSingleNode(xpath);
81         if (node == null) {
82             if (xpath.equals(getXPathsToUpdate().get(0))) {
83                 CmsSetupXmlHelper.setValue(
84                     document,
85                     xpath + "/@" + I_CmsXmlConfiguration.A_CLASS,
86                     CmsBackupResourceHandler.class.getName());
87             }
88             return true;
89         }
90         return false;
91     }
92
93     /**
94      * @see org.opencms.setup.xml.A_CmsSetupXmlUpdate#getCommonPath()
95      */

96     protected String JavaDoc getCommonPath() {
97
98         // /opencms/system/resourceinit
99
return new StringBuffer JavaDoc("/").append(CmsConfigurationManager.N_ROOT).append("/").append(
100             CmsSystemConfiguration.N_SYSTEM).append("/").append(CmsSystemConfiguration.N_RESOURCEINIT).toString();
101     }
102
103     /**
104      * @see org.opencms.setup.xml.A_CmsSetupXmlUpdate#getXPathsToUpdate()
105      */

106     protected List JavaDoc getXPathsToUpdate() {
107
108         if (m_xpaths == null) {
109             // /opencms/system/resourceinit/resourceinithandler[@class='org.opencms.file.CmsBackupResourceHandler']
110
StringBuffer JavaDoc xp = new StringBuffer JavaDoc(256);
111             xp.append("/").append(CmsConfigurationManager.N_ROOT);
112             xp.append("/").append(CmsSystemConfiguration.N_SYSTEM);
113             xp.append("/").append(CmsSystemConfiguration.N_RESOURCEINIT);
114             xp.append("/").append(CmsSystemConfiguration.N_RESOURCEINITHANDLER);
115             xp.append("[@").append(I_CmsXmlConfiguration.A_CLASS);
116             xp.append("='").append(CmsBackupResourceHandler.class.getName());
117             xp.append("']");
118             m_xpaths = Collections.singletonList(xp.toString());
119         }
120         return m_xpaths;
121     }
122 }
123
Popular Tags