1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    *
5    *
6    *
7    * The contents of this file are subject to the terms of the Liferay Enterprise
8    * Subscription License ("License"). You may not use this file except in
9    * compliance with the License. You can obtain a copy of the License by
10   * contacting Liferay, Inc. See the License for the specific language governing
11   * permissions and limitations under the License, including but not limited to
12   * distribution rights of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portal.upgrade.v4_3_0.util;
24  
25  import com.liferay.portal.upgrade.util.ValueMapper;
26  
27  /**
28   * <a href="AvailableMappersUtil.java.html"><b><i>View Source</i></b></a>
29   *
30   * @author Brian Wing Shun Chan
31   */
32  public class AvailableMappersUtil {
33  
34      public static ValueMapper getBlogsEntryIdMapper() {
35          return _blogsEntryIdMapper;
36      }
37  
38      public static void setBlogsEntryIdMapper(ValueMapper blogsEntryIdMapper) {
39          _blogsEntryIdMapper = blogsEntryIdMapper;
40      }
41  
42      public static ValueMapper getBookmarksEntryIdMapper() {
43          return _bookmarksEntryIdMapper;
44      }
45  
46      public static void setBookmarksEntryIdMapper(
47          ValueMapper bookmarksEntryIdMapper) {
48  
49          _bookmarksEntryIdMapper = bookmarksEntryIdMapper;
50      }
51  
52      public static ValueMapper getBookmarksFolderIdMapper() {
53          return _bookmarksFolderIdMapper;
54      }
55  
56      public static void setBookmarksFolderIdMapper(
57          ValueMapper bookmarksFolderIdMapper) {
58  
59          _bookmarksFolderIdMapper = bookmarksFolderIdMapper;
60      }
61  
62      public static ValueMapper getCalEventIdMapper() {
63          return _calEventIdMapper;
64      }
65  
66      public static void setCalEventIdMapper(ValueMapper calEventIdMapper) {
67          _calEventIdMapper = calEventIdMapper;
68      }
69  
70      public static ValueMapper getCompanyIdMapper() {
71          return _companyIdMapper;
72      }
73  
74      public static void setCompanyIdMapper(ValueMapper companyIdMapper) {
75          _companyIdMapper = companyIdMapper;
76      }
77  
78      public static ValueMapper getContactIdMapper() {
79          return _contactIdMapper;
80      }
81  
82      public static void setContactIdMapper(ValueMapper contactIdMapper) {
83          _contactIdMapper = contactIdMapper;
84      }
85  
86      public static ValueMapper getDLFileEntryIdMapper() {
87          return _dlFileEntryIdMapper;
88      }
89  
90      public static void setDLFileEntryIdMapper(ValueMapper dlFileEntryIdMapper) {
91          _dlFileEntryIdMapper = dlFileEntryIdMapper;
92      }
93  
94      public static ValueMapper getDLFileShortcutIdMapper() {
95          return _dlFileShortcutIdMapper;
96      }
97  
98      public static void setDLFileShortcutIdMapper(
99          ValueMapper dlFileShortcutIdMapper) {
100 
101         _dlFileShortcutIdMapper = dlFileShortcutIdMapper;
102     }
103 
104     public static ValueMapper getDLFolderIdMapper() {
105         return _dlFolderIdMapper;
106     }
107 
108     public static void setDLFolderIdMapper(ValueMapper dlFolderIdMapper) {
109         _dlFolderIdMapper = dlFolderIdMapper;
110     }
111 
112     public static ValueMapper getGroupIdMapper() {
113         return _groupIdMapper;
114     }
115 
116     public static void setGroupIdMapper(ValueMapper groupIdMapper) {
117         _groupIdMapper = groupIdMapper;
118     }
119 
120     public static ValueMapper getIGFolderIdMapper() {
121         return _igFolderIdMapper;
122     }
123 
124     public static void setIGFolderIdMapper(ValueMapper igFolderIdMapper) {
125         _igFolderIdMapper = igFolderIdMapper;
126     }
127 
128     public static ValueMapper getIGImageIdMapper() {
129         return _igImageIdMapper;
130     }
131 
132     public static void setIGImageIdMapper(ValueMapper igImageIdMapper) {
133         _igImageIdMapper = igImageIdMapper;
134     }
135 
136     public static ValueMapper getImageIdMapper() {
137         return _imageIdMapper;
138     }
139 
140     public static void setImageIdMapper(ValueMapper imageIdMapper) {
141         _imageIdMapper = imageIdMapper;
142     }
143 
144     public static ValueMapper getJournalArticleIdMapper() {
145         return _journalArticleIdMapper;
146     }
147 
148     public static void setJournalArticleIdMapper(
149         ValueMapper journalArticleIdMapper) {
150 
151         _journalArticleIdMapper = journalArticleIdMapper;
152     }
153 
154     public static ValueMapper getJournalStructureIdMapper() {
155         return _journalStructureIdMapper;
156     }
157 
158     public static void setJournalStructureIdMapper(
159         ValueMapper journalStructureIdMapper) {
160 
161         _journalStructureIdMapper = journalStructureIdMapper;
162     }
163 
164     public static ValueMapper getJournalTemplateIdMapper() {
165         return _journalTemplateIdMapper;
166     }
167 
168     public static void setJournalTemplateIdMapper(
169         ValueMapper journalTemplateIdMapper) {
170 
171         _journalTemplateIdMapper = journalTemplateIdMapper;
172     }
173 
174     public static ValueMapper getLayoutPlidMapper() {
175         return _layoutPlidMapper;
176     }
177 
178     public static void setLayoutPlidMapper(ValueMapper layoutPlidMapper) {
179         _layoutPlidMapper = layoutPlidMapper;
180     }
181 
182     public static ValueMapper getMBCategoryIdMapper() {
183         return _mbCategoryIdMapper;
184     }
185 
186     public static void setMBCategoryIdMapper(ValueMapper mbCategoryIdMapper) {
187         _mbCategoryIdMapper = mbCategoryIdMapper;
188     }
189 
190     public static ValueMapper getMBMessageIdMapper() {
191         return _mbMessageIdMapper;
192     }
193 
194     public static void setMBMessageIdMapper(ValueMapper mbMessageIdMapper) {
195         _mbMessageIdMapper = mbMessageIdMapper;
196     }
197 
198     public static ValueMapper getMBThreadIdMapper() {
199         return _mbThreadIdMapper;
200     }
201 
202     public static void setMBThreadIdMapper(ValueMapper mbThreadIdMapper) {
203         _mbThreadIdMapper = mbThreadIdMapper;
204     }
205 
206     public static ValueMapper getOrganizationIdMapper() {
207         return _organizationIdMapper;
208     }
209 
210     public static void setOrganizationIdMapper(
211         ValueMapper organizationIdMapper) {
212 
213         _organizationIdMapper = organizationIdMapper;
214     }
215 
216     public static ValueMapper getPollsQuestionIdMapper() {
217         return _pollsQuestionIdMapper;
218     }
219 
220     public static void setPollsQuestionIdMapper(
221         ValueMapper pollsQuestionIdMapper) {
222 
223         _pollsQuestionIdMapper = pollsQuestionIdMapper;
224     }
225 
226     public static ValueMapper getRoleIdMapper() {
227         return _roleIdMapper;
228     }
229 
230     public static void setRoleIdMapper(ValueMapper roleIdMapper) {
231         _roleIdMapper = roleIdMapper;
232     }
233 
234     public static ValueMapper getShoppingCategoryIdMapper() {
235         return _shoppingCategoryIdMapper;
236     }
237 
238     public static void setShoppingCategoryIdMapper(
239         ValueMapper shoppingCategoryIdMapper) {
240 
241         _shoppingCategoryIdMapper = shoppingCategoryIdMapper;
242     }
243 
244     public static ValueMapper getShoppingItemIdMapper() {
245         return _shoppingItemIdMapper;
246     }
247 
248     public static void setShoppingItemIdMapper(
249         ValueMapper shoppingItemIdMapper) {
250 
251         _shoppingItemIdMapper = shoppingItemIdMapper;
252     }
253 
254     public static ValueMapper getUserGroupIdMapper() {
255         return _userGroupIdMapper;
256     }
257 
258     public static void setUserGroupIdMapper(ValueMapper userGroupIdMapper) {
259         _userGroupIdMapper = userGroupIdMapper;
260     }
261 
262     public static ValueMapper getUserIdMapper() {
263         return _userIdMapper;
264     }
265 
266     public static void setUserIdMapper(ValueMapper userIdMapper) {
267         _userIdMapper = userIdMapper;
268     }
269 
270     public static ValueMapper getWikiNodeIdMapper() {
271         return _wikiNodeIdMapper;
272     }
273 
274     public static void setWikiNodeIdMapper(ValueMapper wikiNodeIdMapper) {
275         _wikiNodeIdMapper = wikiNodeIdMapper;
276     }
277 
278     public static ValueMapper getWikiPageIdMapper() {
279         return _wikiPageIdMapper;
280     }
281 
282     public static void setWikiPageIdMapper(ValueMapper wikiPageIdMapper) {
283         _wikiPageIdMapper = wikiPageIdMapper;
284     }
285 
286     private static ValueMapper _blogsEntryIdMapper;
287     private static ValueMapper _bookmarksEntryIdMapper;
288     private static ValueMapper _bookmarksFolderIdMapper;
289     private static ValueMapper _calEventIdMapper;
290     private static ValueMapper _companyIdMapper;
291     private static ValueMapper _contactIdMapper;
292     private static ValueMapper _dlFileEntryIdMapper;
293     private static ValueMapper _dlFileShortcutIdMapper;
294     private static ValueMapper _dlFolderIdMapper;
295     private static ValueMapper _groupIdMapper;
296     private static ValueMapper _igFolderIdMapper;
297     private static ValueMapper _igImageIdMapper;
298     private static ValueMapper _imageIdMapper;
299     private static ValueMapper _journalArticleIdMapper;
300     private static ValueMapper _journalStructureIdMapper;
301     private static ValueMapper _journalTemplateIdMapper;
302     private static ValueMapper _layoutPlidMapper;
303     private static ValueMapper _mbCategoryIdMapper;
304     private static ValueMapper _mbMessageIdMapper;
305     private static ValueMapper _mbThreadIdMapper;
306     private static ValueMapper _organizationIdMapper;
307     private static ValueMapper _pollsQuestionIdMapper;
308     private static ValueMapper _roleIdMapper;
309     private static ValueMapper _shoppingCategoryIdMapper;
310     private static ValueMapper _shoppingItemIdMapper;
311     private static ValueMapper _userGroupIdMapper;
312     private static ValueMapper _userIdMapper;
313     private static ValueMapper _wikiNodeIdMapper;
314     private static ValueMapper _wikiPageIdMapper;
315 
316 }