KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencms > workplace > tools > content > CmsElementChangeLocaleSettings


1 /*
2  * File : $Source: /usr/local/cvs/opencms/src-modules/org/opencms/workplace/tools/content/CmsElementChangeLocaleSettings.java,v $
3  * Date : $Date: 2005/07/29 15:38:42 $
4  * Version: $Revision: 1.1 $
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.workplace.tools.content;
33
34 /**
35  * Settings object that provides the settings to convert page locales from one locale to another.<p>
36  *
37  * @author Andreas Zahner
38  *
39  * @version $Revision: 1.1 $
40  *
41  * @since 6.0.1
42  */

43 public class CmsElementChangeLocaleSettings {
44     
45     /** Flag indicating if resources in sub folders should be changed, too. */
46     private boolean m_includeSubFolders;
47     
48     /** The new Locale to use for the page elements. */
49     private String JavaDoc m_newLocale;
50     
51     /** The old Locale of the page elements. */
52     private String JavaDoc m_oldLocale;
53     
54     /** The template for the pages that should be converted. */
55     private String JavaDoc m_template;
56     
57     /** The VFS folder in OpenCms to start the conversion from. */
58     private String JavaDoc m_vfsFolder;
59     
60     /**
61      * Default constructor.<p>
62      */

63     public CmsElementChangeLocaleSettings() {
64
65         super();
66     }
67     
68     /**
69      * Returns the new Locale to use for the page elements.<p>
70      *
71      * @return the new Locale to use for the page elements
72      */

73     public String JavaDoc getNewLocale() {
74
75         return m_newLocale;
76     }
77     
78     /**
79      * Returns the old Locale of the page elements.<p>
80      *
81      * @return the old Locale of the page elements
82      */

83     public String JavaDoc getOldLocale() {
84
85         return m_oldLocale;
86     }
87     
88     /**
89      * Returns the template for the pages that should be converted.<p>
90      *
91      * @return the template for the pages that should be converted
92      */

93     public String JavaDoc getTemplate() {
94
95         return m_template;
96     }
97     
98     /**
99      * Returns the VFS folder in OpenCms to start the conversion from.<p>
100      *
101      * @return the VFS folder in OpenCms to start the conversion from
102      */

103     public String JavaDoc getVfsFolder() {
104
105         return m_vfsFolder;
106     }
107
108     /**
109      * Returns the flag indicating if resources in sub folders should be changed, too.<p>
110      *
111      * @return the flag indicating if resources in sub folders should be changed, too
112      */

113     public boolean isIncludeSubFolders() {
114
115         return m_includeSubFolders;
116     }
117     
118     /**
119      * Sets the flag indicating if resources in sub folders should be changed, too.<p>
120      *
121      * @param includeSubFolders the flag indicating if resources in sub folders should be changed, too
122      */

123     public void setIncludeSubFolders(boolean includeSubFolders) {
124
125         m_includeSubFolders = includeSubFolders;
126     }
127     
128     /**
129      * Sets the new Locale to use for the page elements.<p>
130      *
131      * @param newLocale the new Locale to use for the page elements
132      */

133     public void setNewLocale(String JavaDoc newLocale) {
134
135         m_newLocale = newLocale;
136     }
137     
138     /**
139      * Sets the old Locale of the page elements.<p>
140      *
141      * @param oldLocale the old Locale of the page elements
142      */

143     public void setOldLocale(String JavaDoc oldLocale) {
144
145         m_oldLocale = oldLocale;
146     }
147     
148     /**
149      * Sets the template for the pages that should be converted.<p>
150      *
151      * @param template the template for the pages that should be converted
152      */

153     public void setTemplate(String JavaDoc template) {
154
155         m_template = template;
156     }
157     
158     /**
159      * Sets the VFS folder in OpenCms to start the conversion from.<p>
160      *
161      * @param vfsFolder the VFS folder in OpenCms to start the conversion from
162      */

163     public void setVfsFolder(String JavaDoc vfsFolder) {
164
165        m_vfsFolder = vfsFolder;
166     }
167
168 }
169
Popular Tags