Source Code Cross Referenced for TagsAssetServiceBaseImpl.java in  » Portal » liferay-portal-4.4.2 » com » liferay » portlet » tags » service » base » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Portal » liferay portal 4.4.2 » com.liferay.portlet.tags.service.base 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /**
002:         * Copyright (c) 2000-2008 Liferay, Inc. All rights reserved.
003:         *
004:         * Permission is hereby granted, free of charge, to any person obtaining a copy
005:         * of this software and associated documentation files (the "Software"), to deal
006:         * in the Software without restriction, including without limitation the rights
007:         * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
008:         * copies of the Software, and to permit persons to whom the Software is
009:         * furnished to do so, subject to the following conditions:
010:         *
011:         * The above copyright notice and this permission notice shall be included in
012:         * all copies or substantial portions of the Software.
013:         *
014:         * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
015:         * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
016:         * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
017:         * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
018:         * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
019:         * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
020:         * SOFTWARE.
021:         */package com.liferay.portlet.tags.service.base;
022:
023:        import com.liferay.counter.service.CounterLocalService;
024:        import com.liferay.counter.service.CounterLocalServiceFactory;
025:        import com.liferay.counter.service.CounterService;
026:        import com.liferay.counter.service.CounterServiceFactory;
027:
028:        import com.liferay.portal.service.CompanyLocalService;
029:        import com.liferay.portal.service.CompanyLocalServiceFactory;
030:        import com.liferay.portal.service.CompanyService;
031:        import com.liferay.portal.service.CompanyServiceFactory;
032:        import com.liferay.portal.service.GroupLocalService;
033:        import com.liferay.portal.service.GroupLocalServiceFactory;
034:        import com.liferay.portal.service.GroupService;
035:        import com.liferay.portal.service.GroupServiceFactory;
036:        import com.liferay.portal.service.UserLocalService;
037:        import com.liferay.portal.service.UserLocalServiceFactory;
038:        import com.liferay.portal.service.UserService;
039:        import com.liferay.portal.service.UserServiceFactory;
040:        import com.liferay.portal.service.impl.PrincipalBean;
041:        import com.liferay.portal.service.persistence.CompanyPersistence;
042:        import com.liferay.portal.service.persistence.CompanyUtil;
043:        import com.liferay.portal.service.persistence.GroupFinder;
044:        import com.liferay.portal.service.persistence.GroupFinderUtil;
045:        import com.liferay.portal.service.persistence.GroupPersistence;
046:        import com.liferay.portal.service.persistence.GroupUtil;
047:        import com.liferay.portal.service.persistence.UserFinder;
048:        import com.liferay.portal.service.persistence.UserFinderUtil;
049:        import com.liferay.portal.service.persistence.UserPersistence;
050:        import com.liferay.portal.service.persistence.UserUtil;
051:
052:        import com.liferay.portlet.blogs.service.BlogsEntryLocalService;
053:        import com.liferay.portlet.blogs.service.BlogsEntryLocalServiceFactory;
054:        import com.liferay.portlet.blogs.service.BlogsEntryService;
055:        import com.liferay.portlet.blogs.service.BlogsEntryServiceFactory;
056:        import com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder;
057:        import com.liferay.portlet.blogs.service.persistence.BlogsEntryFinderUtil;
058:        import com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence;
059:        import com.liferay.portlet.blogs.service.persistence.BlogsEntryUtil;
060:        import com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService;
061:        import com.liferay.portlet.bookmarks.service.BookmarksEntryLocalServiceFactory;
062:        import com.liferay.portlet.bookmarks.service.BookmarksEntryService;
063:        import com.liferay.portlet.bookmarks.service.BookmarksEntryServiceFactory;
064:        import com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryFinder;
065:        import com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryFinderUtil;
066:        import com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryPersistence;
067:        import com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryUtil;
068:        import com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService;
069:        import com.liferay.portlet.documentlibrary.service.DLFileEntryLocalServiceFactory;
070:        import com.liferay.portlet.documentlibrary.service.DLFileEntryService;
071:        import com.liferay.portlet.documentlibrary.service.DLFileEntryServiceFactory;
072:        import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
073:        import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinderUtil;
074:        import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence;
075:        import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryUtil;
076:        import com.liferay.portlet.journal.service.JournalArticleLocalService;
077:        import com.liferay.portlet.journal.service.JournalArticleLocalServiceFactory;
078:        import com.liferay.portlet.journal.service.JournalArticleResourceLocalService;
079:        import com.liferay.portlet.journal.service.JournalArticleResourceLocalServiceFactory;
080:        import com.liferay.portlet.journal.service.JournalArticleService;
081:        import com.liferay.portlet.journal.service.JournalArticleServiceFactory;
082:        import com.liferay.portlet.journal.service.persistence.JournalArticleFinder;
083:        import com.liferay.portlet.journal.service.persistence.JournalArticleFinderUtil;
084:        import com.liferay.portlet.journal.service.persistence.JournalArticlePersistence;
085:        import com.liferay.portlet.journal.service.persistence.JournalArticleResourcePersistence;
086:        import com.liferay.portlet.journal.service.persistence.JournalArticleResourceUtil;
087:        import com.liferay.portlet.journal.service.persistence.JournalArticleUtil;
088:        import com.liferay.portlet.messageboards.service.MBMessageLocalService;
089:        import com.liferay.portlet.messageboards.service.MBMessageLocalServiceFactory;
090:        import com.liferay.portlet.messageboards.service.MBMessageService;
091:        import com.liferay.portlet.messageboards.service.MBMessageServiceFactory;
092:        import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
093:        import com.liferay.portlet.messageboards.service.persistence.MBMessageFinderUtil;
094:        import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
095:        import com.liferay.portlet.messageboards.service.persistence.MBMessageUtil;
096:        import com.liferay.portlet.tags.service.TagsAssetLocalService;
097:        import com.liferay.portlet.tags.service.TagsAssetLocalServiceFactory;
098:        import com.liferay.portlet.tags.service.TagsAssetService;
099:        import com.liferay.portlet.tags.service.TagsEntryLocalService;
100:        import com.liferay.portlet.tags.service.TagsEntryLocalServiceFactory;
101:        import com.liferay.portlet.tags.service.TagsEntryService;
102:        import com.liferay.portlet.tags.service.TagsEntryServiceFactory;
103:        import com.liferay.portlet.tags.service.TagsPropertyLocalService;
104:        import com.liferay.portlet.tags.service.TagsPropertyLocalServiceFactory;
105:        import com.liferay.portlet.tags.service.TagsPropertyService;
106:        import com.liferay.portlet.tags.service.TagsPropertyServiceFactory;
107:        import com.liferay.portlet.tags.service.TagsSourceLocalService;
108:        import com.liferay.portlet.tags.service.TagsSourceLocalServiceFactory;
109:        import com.liferay.portlet.tags.service.TagsSourceService;
110:        import com.liferay.portlet.tags.service.TagsSourceServiceFactory;
111:        import com.liferay.portlet.tags.service.persistence.TagsAssetFinder;
112:        import com.liferay.portlet.tags.service.persistence.TagsAssetFinderUtil;
113:        import com.liferay.portlet.tags.service.persistence.TagsAssetPersistence;
114:        import com.liferay.portlet.tags.service.persistence.TagsAssetUtil;
115:        import com.liferay.portlet.tags.service.persistence.TagsEntryFinder;
116:        import com.liferay.portlet.tags.service.persistence.TagsEntryFinderUtil;
117:        import com.liferay.portlet.tags.service.persistence.TagsEntryPersistence;
118:        import com.liferay.portlet.tags.service.persistence.TagsEntryUtil;
119:        import com.liferay.portlet.tags.service.persistence.TagsPropertyFinder;
120:        import com.liferay.portlet.tags.service.persistence.TagsPropertyFinderUtil;
121:        import com.liferay.portlet.tags.service.persistence.TagsPropertyKeyFinder;
122:        import com.liferay.portlet.tags.service.persistence.TagsPropertyKeyFinderUtil;
123:        import com.liferay.portlet.tags.service.persistence.TagsPropertyPersistence;
124:        import com.liferay.portlet.tags.service.persistence.TagsPropertyUtil;
125:        import com.liferay.portlet.tags.service.persistence.TagsSourcePersistence;
126:        import com.liferay.portlet.tags.service.persistence.TagsSourceUtil;
127:        import com.liferay.portlet.wiki.service.WikiPageLocalService;
128:        import com.liferay.portlet.wiki.service.WikiPageLocalServiceFactory;
129:        import com.liferay.portlet.wiki.service.WikiPageResourceLocalService;
130:        import com.liferay.portlet.wiki.service.WikiPageResourceLocalServiceFactory;
131:        import com.liferay.portlet.wiki.service.WikiPageService;
132:        import com.liferay.portlet.wiki.service.WikiPageServiceFactory;
133:        import com.liferay.portlet.wiki.service.persistence.WikiPageFinder;
134:        import com.liferay.portlet.wiki.service.persistence.WikiPageFinderUtil;
135:        import com.liferay.portlet.wiki.service.persistence.WikiPagePersistence;
136:        import com.liferay.portlet.wiki.service.persistence.WikiPageResourcePersistence;
137:        import com.liferay.portlet.wiki.service.persistence.WikiPageResourceUtil;
138:        import com.liferay.portlet.wiki.service.persistence.WikiPageUtil;
139:
140:        import org.springframework.beans.factory.InitializingBean;
141:
142:        /**
143:         * <a href="TagsAssetServiceBaseImpl.java.html"><b><i>View Source</i></b></a>
144:         *
145:         * @author Brian Wing Shun Chan
146:         *
147:         */
148:        public abstract class TagsAssetServiceBaseImpl extends PrincipalBean
149:                implements  TagsAssetService, InitializingBean {
150:            public TagsAssetLocalService getTagsAssetLocalService() {
151:                return tagsAssetLocalService;
152:            }
153:
154:            public void setTagsAssetLocalService(
155:                    TagsAssetLocalService tagsAssetLocalService) {
156:                this .tagsAssetLocalService = tagsAssetLocalService;
157:            }
158:
159:            public TagsAssetPersistence getTagsAssetPersistence() {
160:                return tagsAssetPersistence;
161:            }
162:
163:            public void setTagsAssetPersistence(
164:                    TagsAssetPersistence tagsAssetPersistence) {
165:                this .tagsAssetPersistence = tagsAssetPersistence;
166:            }
167:
168:            public TagsAssetFinder getTagsAssetFinder() {
169:                return tagsAssetFinder;
170:            }
171:
172:            public void setTagsAssetFinder(TagsAssetFinder tagsAssetFinder) {
173:                this .tagsAssetFinder = tagsAssetFinder;
174:            }
175:
176:            public TagsEntryLocalService getTagsEntryLocalService() {
177:                return tagsEntryLocalService;
178:            }
179:
180:            public void setTagsEntryLocalService(
181:                    TagsEntryLocalService tagsEntryLocalService) {
182:                this .tagsEntryLocalService = tagsEntryLocalService;
183:            }
184:
185:            public TagsEntryService getTagsEntryService() {
186:                return tagsEntryService;
187:            }
188:
189:            public void setTagsEntryService(TagsEntryService tagsEntryService) {
190:                this .tagsEntryService = tagsEntryService;
191:            }
192:
193:            public TagsEntryPersistence getTagsEntryPersistence() {
194:                return tagsEntryPersistence;
195:            }
196:
197:            public void setTagsEntryPersistence(
198:                    TagsEntryPersistence tagsEntryPersistence) {
199:                this .tagsEntryPersistence = tagsEntryPersistence;
200:            }
201:
202:            public TagsEntryFinder getTagsEntryFinder() {
203:                return tagsEntryFinder;
204:            }
205:
206:            public void setTagsEntryFinder(TagsEntryFinder tagsEntryFinder) {
207:                this .tagsEntryFinder = tagsEntryFinder;
208:            }
209:
210:            public TagsPropertyLocalService getTagsPropertyLocalService() {
211:                return tagsPropertyLocalService;
212:            }
213:
214:            public void setTagsPropertyLocalService(
215:                    TagsPropertyLocalService tagsPropertyLocalService) {
216:                this .tagsPropertyLocalService = tagsPropertyLocalService;
217:            }
218:
219:            public TagsPropertyService getTagsPropertyService() {
220:                return tagsPropertyService;
221:            }
222:
223:            public void setTagsPropertyService(
224:                    TagsPropertyService tagsPropertyService) {
225:                this .tagsPropertyService = tagsPropertyService;
226:            }
227:
228:            public TagsPropertyPersistence getTagsPropertyPersistence() {
229:                return tagsPropertyPersistence;
230:            }
231:
232:            public void setTagsPropertyPersistence(
233:                    TagsPropertyPersistence tagsPropertyPersistence) {
234:                this .tagsPropertyPersistence = tagsPropertyPersistence;
235:            }
236:
237:            public TagsPropertyFinder getTagsPropertyFinder() {
238:                return tagsPropertyFinder;
239:            }
240:
241:            public void setTagsPropertyFinder(
242:                    TagsPropertyFinder tagsPropertyFinder) {
243:                this .tagsPropertyFinder = tagsPropertyFinder;
244:            }
245:
246:            public TagsPropertyKeyFinder getTagsPropertyKeyFinder() {
247:                return tagsPropertyKeyFinder;
248:            }
249:
250:            public void setTagsPropertyKeyFinder(
251:                    TagsPropertyKeyFinder tagsPropertyKeyFinder) {
252:                this .tagsPropertyKeyFinder = tagsPropertyKeyFinder;
253:            }
254:
255:            public TagsSourceLocalService getTagsSourceLocalService() {
256:                return tagsSourceLocalService;
257:            }
258:
259:            public void setTagsSourceLocalService(
260:                    TagsSourceLocalService tagsSourceLocalService) {
261:                this .tagsSourceLocalService = tagsSourceLocalService;
262:            }
263:
264:            public TagsSourceService getTagsSourceService() {
265:                return tagsSourceService;
266:            }
267:
268:            public void setTagsSourceService(TagsSourceService tagsSourceService) {
269:                this .tagsSourceService = tagsSourceService;
270:            }
271:
272:            public TagsSourcePersistence getTagsSourcePersistence() {
273:                return tagsSourcePersistence;
274:            }
275:
276:            public void setTagsSourcePersistence(
277:                    TagsSourcePersistence tagsSourcePersistence) {
278:                this .tagsSourcePersistence = tagsSourcePersistence;
279:            }
280:
281:            public CounterLocalService getCounterLocalService() {
282:                return counterLocalService;
283:            }
284:
285:            public void setCounterLocalService(
286:                    CounterLocalService counterLocalService) {
287:                this .counterLocalService = counterLocalService;
288:            }
289:
290:            public CounterService getCounterService() {
291:                return counterService;
292:            }
293:
294:            public void setCounterService(CounterService counterService) {
295:                this .counterService = counterService;
296:            }
297:
298:            public CompanyLocalService getCompanyLocalService() {
299:                return companyLocalService;
300:            }
301:
302:            public void setCompanyLocalService(
303:                    CompanyLocalService companyLocalService) {
304:                this .companyLocalService = companyLocalService;
305:            }
306:
307:            public CompanyService getCompanyService() {
308:                return companyService;
309:            }
310:
311:            public void setCompanyService(CompanyService companyService) {
312:                this .companyService = companyService;
313:            }
314:
315:            public CompanyPersistence getCompanyPersistence() {
316:                return companyPersistence;
317:            }
318:
319:            public void setCompanyPersistence(
320:                    CompanyPersistence companyPersistence) {
321:                this .companyPersistence = companyPersistence;
322:            }
323:
324:            public GroupLocalService getGroupLocalService() {
325:                return groupLocalService;
326:            }
327:
328:            public void setGroupLocalService(GroupLocalService groupLocalService) {
329:                this .groupLocalService = groupLocalService;
330:            }
331:
332:            public GroupService getGroupService() {
333:                return groupService;
334:            }
335:
336:            public void setGroupService(GroupService groupService) {
337:                this .groupService = groupService;
338:            }
339:
340:            public GroupPersistence getGroupPersistence() {
341:                return groupPersistence;
342:            }
343:
344:            public void setGroupPersistence(GroupPersistence groupPersistence) {
345:                this .groupPersistence = groupPersistence;
346:            }
347:
348:            public GroupFinder getGroupFinder() {
349:                return groupFinder;
350:            }
351:
352:            public void setGroupFinder(GroupFinder groupFinder) {
353:                this .groupFinder = groupFinder;
354:            }
355:
356:            public UserLocalService getUserLocalService() {
357:                return userLocalService;
358:            }
359:
360:            public void setUserLocalService(UserLocalService userLocalService) {
361:                this .userLocalService = userLocalService;
362:            }
363:
364:            public UserService getUserService() {
365:                return userService;
366:            }
367:
368:            public void setUserService(UserService userService) {
369:                this .userService = userService;
370:            }
371:
372:            public UserPersistence getUserPersistence() {
373:                return userPersistence;
374:            }
375:
376:            public void setUserPersistence(UserPersistence userPersistence) {
377:                this .userPersistence = userPersistence;
378:            }
379:
380:            public UserFinder getUserFinder() {
381:                return userFinder;
382:            }
383:
384:            public void setUserFinder(UserFinder userFinder) {
385:                this .userFinder = userFinder;
386:            }
387:
388:            public BlogsEntryLocalService getBlogsEntryLocalService() {
389:                return blogsEntryLocalService;
390:            }
391:
392:            public void setBlogsEntryLocalService(
393:                    BlogsEntryLocalService blogsEntryLocalService) {
394:                this .blogsEntryLocalService = blogsEntryLocalService;
395:            }
396:
397:            public BlogsEntryService getBlogsEntryService() {
398:                return blogsEntryService;
399:            }
400:
401:            public void setBlogsEntryService(BlogsEntryService blogsEntryService) {
402:                this .blogsEntryService = blogsEntryService;
403:            }
404:
405:            public BlogsEntryPersistence getBlogsEntryPersistence() {
406:                return blogsEntryPersistence;
407:            }
408:
409:            public void setBlogsEntryPersistence(
410:                    BlogsEntryPersistence blogsEntryPersistence) {
411:                this .blogsEntryPersistence = blogsEntryPersistence;
412:            }
413:
414:            public BlogsEntryFinder getBlogsEntryFinder() {
415:                return blogsEntryFinder;
416:            }
417:
418:            public void setBlogsEntryFinder(BlogsEntryFinder blogsEntryFinder) {
419:                this .blogsEntryFinder = blogsEntryFinder;
420:            }
421:
422:            public BookmarksEntryLocalService getBookmarksEntryLocalService() {
423:                return bookmarksEntryLocalService;
424:            }
425:
426:            public void setBookmarksEntryLocalService(
427:                    BookmarksEntryLocalService bookmarksEntryLocalService) {
428:                this .bookmarksEntryLocalService = bookmarksEntryLocalService;
429:            }
430:
431:            public BookmarksEntryService getBookmarksEntryService() {
432:                return bookmarksEntryService;
433:            }
434:
435:            public void setBookmarksEntryService(
436:                    BookmarksEntryService bookmarksEntryService) {
437:                this .bookmarksEntryService = bookmarksEntryService;
438:            }
439:
440:            public BookmarksEntryPersistence getBookmarksEntryPersistence() {
441:                return bookmarksEntryPersistence;
442:            }
443:
444:            public void setBookmarksEntryPersistence(
445:                    BookmarksEntryPersistence bookmarksEntryPersistence) {
446:                this .bookmarksEntryPersistence = bookmarksEntryPersistence;
447:            }
448:
449:            public BookmarksEntryFinder getBookmarksEntryFinder() {
450:                return bookmarksEntryFinder;
451:            }
452:
453:            public void setBookmarksEntryFinder(
454:                    BookmarksEntryFinder bookmarksEntryFinder) {
455:                this .bookmarksEntryFinder = bookmarksEntryFinder;
456:            }
457:
458:            public DLFileEntryLocalService getDLFileEntryLocalService() {
459:                return dlFileEntryLocalService;
460:            }
461:
462:            public void setDLFileEntryLocalService(
463:                    DLFileEntryLocalService dlFileEntryLocalService) {
464:                this .dlFileEntryLocalService = dlFileEntryLocalService;
465:            }
466:
467:            public DLFileEntryService getDLFileEntryService() {
468:                return dlFileEntryService;
469:            }
470:
471:            public void setDLFileEntryService(
472:                    DLFileEntryService dlFileEntryService) {
473:                this .dlFileEntryService = dlFileEntryService;
474:            }
475:
476:            public DLFileEntryPersistence getDLFileEntryPersistence() {
477:                return dlFileEntryPersistence;
478:            }
479:
480:            public void setDLFileEntryPersistence(
481:                    DLFileEntryPersistence dlFileEntryPersistence) {
482:                this .dlFileEntryPersistence = dlFileEntryPersistence;
483:            }
484:
485:            public DLFileEntryFinder getDLFileEntryFinder() {
486:                return dlFileEntryFinder;
487:            }
488:
489:            public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
490:                this .dlFileEntryFinder = dlFileEntryFinder;
491:            }
492:
493:            public JournalArticleLocalService getJournalArticleLocalService() {
494:                return journalArticleLocalService;
495:            }
496:
497:            public void setJournalArticleLocalService(
498:                    JournalArticleLocalService journalArticleLocalService) {
499:                this .journalArticleLocalService = journalArticleLocalService;
500:            }
501:
502:            public JournalArticleService getJournalArticleService() {
503:                return journalArticleService;
504:            }
505:
506:            public void setJournalArticleService(
507:                    JournalArticleService journalArticleService) {
508:                this .journalArticleService = journalArticleService;
509:            }
510:
511:            public JournalArticlePersistence getJournalArticlePersistence() {
512:                return journalArticlePersistence;
513:            }
514:
515:            public void setJournalArticlePersistence(
516:                    JournalArticlePersistence journalArticlePersistence) {
517:                this .journalArticlePersistence = journalArticlePersistence;
518:            }
519:
520:            public JournalArticleFinder getJournalArticleFinder() {
521:                return journalArticleFinder;
522:            }
523:
524:            public void setJournalArticleFinder(
525:                    JournalArticleFinder journalArticleFinder) {
526:                this .journalArticleFinder = journalArticleFinder;
527:            }
528:
529:            public JournalArticleResourceLocalService getJournalArticleResourceLocalService() {
530:                return journalArticleResourceLocalService;
531:            }
532:
533:            public void setJournalArticleResourceLocalService(
534:                    JournalArticleResourceLocalService journalArticleResourceLocalService) {
535:                this .journalArticleResourceLocalService = journalArticleResourceLocalService;
536:            }
537:
538:            public JournalArticleResourcePersistence getJournalArticleResourcePersistence() {
539:                return journalArticleResourcePersistence;
540:            }
541:
542:            public void setJournalArticleResourcePersistence(
543:                    JournalArticleResourcePersistence journalArticleResourcePersistence) {
544:                this .journalArticleResourcePersistence = journalArticleResourcePersistence;
545:            }
546:
547:            public MBMessageLocalService getMBMessageLocalService() {
548:                return mbMessageLocalService;
549:            }
550:
551:            public void setMBMessageLocalService(
552:                    MBMessageLocalService mbMessageLocalService) {
553:                this .mbMessageLocalService = mbMessageLocalService;
554:            }
555:
556:            public MBMessageService getMBMessageService() {
557:                return mbMessageService;
558:            }
559:
560:            public void setMBMessageService(MBMessageService mbMessageService) {
561:                this .mbMessageService = mbMessageService;
562:            }
563:
564:            public MBMessagePersistence getMBMessagePersistence() {
565:                return mbMessagePersistence;
566:            }
567:
568:            public void setMBMessagePersistence(
569:                    MBMessagePersistence mbMessagePersistence) {
570:                this .mbMessagePersistence = mbMessagePersistence;
571:            }
572:
573:            public MBMessageFinder getMBMessageFinder() {
574:                return mbMessageFinder;
575:            }
576:
577:            public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
578:                this .mbMessageFinder = mbMessageFinder;
579:            }
580:
581:            public WikiPageLocalService getWikiPageLocalService() {
582:                return wikiPageLocalService;
583:            }
584:
585:            public void setWikiPageLocalService(
586:                    WikiPageLocalService wikiPageLocalService) {
587:                this .wikiPageLocalService = wikiPageLocalService;
588:            }
589:
590:            public WikiPageService getWikiPageService() {
591:                return wikiPageService;
592:            }
593:
594:            public void setWikiPageService(WikiPageService wikiPageService) {
595:                this .wikiPageService = wikiPageService;
596:            }
597:
598:            public WikiPagePersistence getWikiPagePersistence() {
599:                return wikiPagePersistence;
600:            }
601:
602:            public void setWikiPagePersistence(
603:                    WikiPagePersistence wikiPagePersistence) {
604:                this .wikiPagePersistence = wikiPagePersistence;
605:            }
606:
607:            public WikiPageFinder getWikiPageFinder() {
608:                return wikiPageFinder;
609:            }
610:
611:            public void setWikiPageFinder(WikiPageFinder wikiPageFinder) {
612:                this .wikiPageFinder = wikiPageFinder;
613:            }
614:
615:            public WikiPageResourceLocalService getWikiPageResourceLocalService() {
616:                return wikiPageResourceLocalService;
617:            }
618:
619:            public void setWikiPageResourceLocalService(
620:                    WikiPageResourceLocalService wikiPageResourceLocalService) {
621:                this .wikiPageResourceLocalService = wikiPageResourceLocalService;
622:            }
623:
624:            public WikiPageResourcePersistence getWikiPageResourcePersistence() {
625:                return wikiPageResourcePersistence;
626:            }
627:
628:            public void setWikiPageResourcePersistence(
629:                    WikiPageResourcePersistence wikiPageResourcePersistence) {
630:                this .wikiPageResourcePersistence = wikiPageResourcePersistence;
631:            }
632:
633:            public void afterPropertiesSet() {
634:                if (tagsAssetLocalService == null) {
635:                    tagsAssetLocalService = TagsAssetLocalServiceFactory
636:                            .getImpl();
637:                }
638:
639:                if (tagsAssetPersistence == null) {
640:                    tagsAssetPersistence = TagsAssetUtil.getPersistence();
641:                }
642:
643:                if (tagsAssetFinder == null) {
644:                    tagsAssetFinder = TagsAssetFinderUtil.getFinder();
645:                }
646:
647:                if (tagsEntryLocalService == null) {
648:                    tagsEntryLocalService = TagsEntryLocalServiceFactory
649:                            .getImpl();
650:                }
651:
652:                if (tagsEntryService == null) {
653:                    tagsEntryService = TagsEntryServiceFactory.getImpl();
654:                }
655:
656:                if (tagsEntryPersistence == null) {
657:                    tagsEntryPersistence = TagsEntryUtil.getPersistence();
658:                }
659:
660:                if (tagsEntryFinder == null) {
661:                    tagsEntryFinder = TagsEntryFinderUtil.getFinder();
662:                }
663:
664:                if (tagsPropertyLocalService == null) {
665:                    tagsPropertyLocalService = TagsPropertyLocalServiceFactory
666:                            .getImpl();
667:                }
668:
669:                if (tagsPropertyService == null) {
670:                    tagsPropertyService = TagsPropertyServiceFactory.getImpl();
671:                }
672:
673:                if (tagsPropertyPersistence == null) {
674:                    tagsPropertyPersistence = TagsPropertyUtil.getPersistence();
675:                }
676:
677:                if (tagsPropertyFinder == null) {
678:                    tagsPropertyFinder = TagsPropertyFinderUtil.getFinder();
679:                }
680:
681:                if (tagsPropertyKeyFinder == null) {
682:                    tagsPropertyKeyFinder = TagsPropertyKeyFinderUtil
683:                            .getFinder();
684:                }
685:
686:                if (tagsSourceLocalService == null) {
687:                    tagsSourceLocalService = TagsSourceLocalServiceFactory
688:                            .getImpl();
689:                }
690:
691:                if (tagsSourceService == null) {
692:                    tagsSourceService = TagsSourceServiceFactory.getImpl();
693:                }
694:
695:                if (tagsSourcePersistence == null) {
696:                    tagsSourcePersistence = TagsSourceUtil.getPersistence();
697:                }
698:
699:                if (counterLocalService == null) {
700:                    counterLocalService = CounterLocalServiceFactory.getImpl();
701:                }
702:
703:                if (counterService == null) {
704:                    counterService = CounterServiceFactory.getImpl();
705:                }
706:
707:                if (companyLocalService == null) {
708:                    companyLocalService = CompanyLocalServiceFactory.getImpl();
709:                }
710:
711:                if (companyService == null) {
712:                    companyService = CompanyServiceFactory.getImpl();
713:                }
714:
715:                if (companyPersistence == null) {
716:                    companyPersistence = CompanyUtil.getPersistence();
717:                }
718:
719:                if (groupLocalService == null) {
720:                    groupLocalService = GroupLocalServiceFactory.getImpl();
721:                }
722:
723:                if (groupService == null) {
724:                    groupService = GroupServiceFactory.getImpl();
725:                }
726:
727:                if (groupPersistence == null) {
728:                    groupPersistence = GroupUtil.getPersistence();
729:                }
730:
731:                if (groupFinder == null) {
732:                    groupFinder = GroupFinderUtil.getFinder();
733:                }
734:
735:                if (userLocalService == null) {
736:                    userLocalService = UserLocalServiceFactory.getImpl();
737:                }
738:
739:                if (userService == null) {
740:                    userService = UserServiceFactory.getImpl();
741:                }
742:
743:                if (userPersistence == null) {
744:                    userPersistence = UserUtil.getPersistence();
745:                }
746:
747:                if (userFinder == null) {
748:                    userFinder = UserFinderUtil.getFinder();
749:                }
750:
751:                if (blogsEntryLocalService == null) {
752:                    blogsEntryLocalService = BlogsEntryLocalServiceFactory
753:                            .getImpl();
754:                }
755:
756:                if (blogsEntryService == null) {
757:                    blogsEntryService = BlogsEntryServiceFactory.getImpl();
758:                }
759:
760:                if (blogsEntryPersistence == null) {
761:                    blogsEntryPersistence = BlogsEntryUtil.getPersistence();
762:                }
763:
764:                if (blogsEntryFinder == null) {
765:                    blogsEntryFinder = BlogsEntryFinderUtil.getFinder();
766:                }
767:
768:                if (bookmarksEntryLocalService == null) {
769:                    bookmarksEntryLocalService = BookmarksEntryLocalServiceFactory
770:                            .getImpl();
771:                }
772:
773:                if (bookmarksEntryService == null) {
774:                    bookmarksEntryService = BookmarksEntryServiceFactory
775:                            .getImpl();
776:                }
777:
778:                if (bookmarksEntryPersistence == null) {
779:                    bookmarksEntryPersistence = BookmarksEntryUtil
780:                            .getPersistence();
781:                }
782:
783:                if (bookmarksEntryFinder == null) {
784:                    bookmarksEntryFinder = BookmarksEntryFinderUtil.getFinder();
785:                }
786:
787:                if (dlFileEntryLocalService == null) {
788:                    dlFileEntryLocalService = DLFileEntryLocalServiceFactory
789:                            .getImpl();
790:                }
791:
792:                if (dlFileEntryService == null) {
793:                    dlFileEntryService = DLFileEntryServiceFactory.getImpl();
794:                }
795:
796:                if (dlFileEntryPersistence == null) {
797:                    dlFileEntryPersistence = DLFileEntryUtil.getPersistence();
798:                }
799:
800:                if (dlFileEntryFinder == null) {
801:                    dlFileEntryFinder = DLFileEntryFinderUtil.getFinder();
802:                }
803:
804:                if (journalArticleLocalService == null) {
805:                    journalArticleLocalService = JournalArticleLocalServiceFactory
806:                            .getImpl();
807:                }
808:
809:                if (journalArticleService == null) {
810:                    journalArticleService = JournalArticleServiceFactory
811:                            .getImpl();
812:                }
813:
814:                if (journalArticlePersistence == null) {
815:                    journalArticlePersistence = JournalArticleUtil
816:                            .getPersistence();
817:                }
818:
819:                if (journalArticleFinder == null) {
820:                    journalArticleFinder = JournalArticleFinderUtil.getFinder();
821:                }
822:
823:                if (journalArticleResourceLocalService == null) {
824:                    journalArticleResourceLocalService = JournalArticleResourceLocalServiceFactory
825:                            .getImpl();
826:                }
827:
828:                if (journalArticleResourcePersistence == null) {
829:                    journalArticleResourcePersistence = JournalArticleResourceUtil
830:                            .getPersistence();
831:                }
832:
833:                if (mbMessageLocalService == null) {
834:                    mbMessageLocalService = MBMessageLocalServiceFactory
835:                            .getImpl();
836:                }
837:
838:                if (mbMessageService == null) {
839:                    mbMessageService = MBMessageServiceFactory.getImpl();
840:                }
841:
842:                if (mbMessagePersistence == null) {
843:                    mbMessagePersistence = MBMessageUtil.getPersistence();
844:                }
845:
846:                if (mbMessageFinder == null) {
847:                    mbMessageFinder = MBMessageFinderUtil.getFinder();
848:                }
849:
850:                if (wikiPageLocalService == null) {
851:                    wikiPageLocalService = WikiPageLocalServiceFactory
852:                            .getImpl();
853:                }
854:
855:                if (wikiPageService == null) {
856:                    wikiPageService = WikiPageServiceFactory.getImpl();
857:                }
858:
859:                if (wikiPagePersistence == null) {
860:                    wikiPagePersistence = WikiPageUtil.getPersistence();
861:                }
862:
863:                if (wikiPageFinder == null) {
864:                    wikiPageFinder = WikiPageFinderUtil.getFinder();
865:                }
866:
867:                if (wikiPageResourceLocalService == null) {
868:                    wikiPageResourceLocalService = WikiPageResourceLocalServiceFactory
869:                            .getImpl();
870:                }
871:
872:                if (wikiPageResourcePersistence == null) {
873:                    wikiPageResourcePersistence = WikiPageResourceUtil
874:                            .getPersistence();
875:                }
876:            }
877:
878:            protected TagsAssetLocalService tagsAssetLocalService;
879:            protected TagsAssetPersistence tagsAssetPersistence;
880:            protected TagsAssetFinder tagsAssetFinder;
881:            protected TagsEntryLocalService tagsEntryLocalService;
882:            protected TagsEntryService tagsEntryService;
883:            protected TagsEntryPersistence tagsEntryPersistence;
884:            protected TagsEntryFinder tagsEntryFinder;
885:            protected TagsPropertyLocalService tagsPropertyLocalService;
886:            protected TagsPropertyService tagsPropertyService;
887:            protected TagsPropertyPersistence tagsPropertyPersistence;
888:            protected TagsPropertyFinder tagsPropertyFinder;
889:            protected TagsPropertyKeyFinder tagsPropertyKeyFinder;
890:            protected TagsSourceLocalService tagsSourceLocalService;
891:            protected TagsSourceService tagsSourceService;
892:            protected TagsSourcePersistence tagsSourcePersistence;
893:            protected CounterLocalService counterLocalService;
894:            protected CounterService counterService;
895:            protected CompanyLocalService companyLocalService;
896:            protected CompanyService companyService;
897:            protected CompanyPersistence companyPersistence;
898:            protected GroupLocalService groupLocalService;
899:            protected GroupService groupService;
900:            protected GroupPersistence groupPersistence;
901:            protected GroupFinder groupFinder;
902:            protected UserLocalService userLocalService;
903:            protected UserService userService;
904:            protected UserPersistence userPersistence;
905:            protected UserFinder userFinder;
906:            protected BlogsEntryLocalService blogsEntryLocalService;
907:            protected BlogsEntryService blogsEntryService;
908:            protected BlogsEntryPersistence blogsEntryPersistence;
909:            protected BlogsEntryFinder blogsEntryFinder;
910:            protected BookmarksEntryLocalService bookmarksEntryLocalService;
911:            protected BookmarksEntryService bookmarksEntryService;
912:            protected BookmarksEntryPersistence bookmarksEntryPersistence;
913:            protected BookmarksEntryFinder bookmarksEntryFinder;
914:            protected DLFileEntryLocalService dlFileEntryLocalService;
915:            protected DLFileEntryService dlFileEntryService;
916:            protected DLFileEntryPersistence dlFileEntryPersistence;
917:            protected DLFileEntryFinder dlFileEntryFinder;
918:            protected JournalArticleLocalService journalArticleLocalService;
919:            protected JournalArticleService journalArticleService;
920:            protected JournalArticlePersistence journalArticlePersistence;
921:            protected JournalArticleFinder journalArticleFinder;
922:            protected JournalArticleResourceLocalService journalArticleResourceLocalService;
923:            protected JournalArticleResourcePersistence journalArticleResourcePersistence;
924:            protected MBMessageLocalService mbMessageLocalService;
925:            protected MBMessageService mbMessageService;
926:            protected MBMessagePersistence mbMessagePersistence;
927:            protected MBMessageFinder mbMessageFinder;
928:            protected WikiPageLocalService wikiPageLocalService;
929:            protected WikiPageService wikiPageService;
930:            protected WikiPagePersistence wikiPagePersistence;
931:            protected WikiPageFinder wikiPageFinder;
932:            protected WikiPageResourceLocalService wikiPageResourceLocalService;
933:            protected WikiPageResourcePersistence wikiPageResourcePersistence;
934:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.