001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.asset.service.base;
016    
017    import com.liferay.counter.service.CounterLocalService;
018    
019    import com.liferay.portal.kernel.bean.BeanReference;
020    import com.liferay.portal.kernel.bean.IdentifiableBean;
021    import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
022    import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
023    import com.liferay.portal.kernel.dao.orm.DynamicQuery;
024    import com.liferay.portal.kernel.dao.orm.DynamicQueryFactoryUtil;
025    import com.liferay.portal.kernel.exception.PortalException;
026    import com.liferay.portal.kernel.exception.SystemException;
027    import com.liferay.portal.kernel.search.Indexable;
028    import com.liferay.portal.kernel.search.IndexableType;
029    import com.liferay.portal.kernel.util.OrderByComparator;
030    import com.liferay.portal.model.PersistedModel;
031    import com.liferay.portal.service.BaseLocalServiceImpl;
032    import com.liferay.portal.service.CompanyLocalService;
033    import com.liferay.portal.service.CompanyService;
034    import com.liferay.portal.service.GroupLocalService;
035    import com.liferay.portal.service.GroupService;
036    import com.liferay.portal.service.PersistedModelLocalServiceRegistry;
037    import com.liferay.portal.service.ResourceLocalService;
038    import com.liferay.portal.service.UserLocalService;
039    import com.liferay.portal.service.UserService;
040    import com.liferay.portal.service.persistence.CompanyPersistence;
041    import com.liferay.portal.service.persistence.GroupFinder;
042    import com.liferay.portal.service.persistence.GroupPersistence;
043    import com.liferay.portal.service.persistence.UserFinder;
044    import com.liferay.portal.service.persistence.UserPersistence;
045    
046    import com.liferay.portlet.asset.model.AssetEntry;
047    import com.liferay.portlet.asset.service.AssetCategoryLocalService;
048    import com.liferay.portlet.asset.service.AssetCategoryPropertyLocalService;
049    import com.liferay.portlet.asset.service.AssetCategoryPropertyService;
050    import com.liferay.portlet.asset.service.AssetCategoryService;
051    import com.liferay.portlet.asset.service.AssetEntryLocalService;
052    import com.liferay.portlet.asset.service.AssetEntryService;
053    import com.liferay.portlet.asset.service.AssetLinkLocalService;
054    import com.liferay.portlet.asset.service.AssetTagLocalService;
055    import com.liferay.portlet.asset.service.AssetTagPropertyLocalService;
056    import com.liferay.portlet.asset.service.AssetTagPropertyService;
057    import com.liferay.portlet.asset.service.AssetTagService;
058    import com.liferay.portlet.asset.service.AssetTagStatsLocalService;
059    import com.liferay.portlet.asset.service.AssetVocabularyLocalService;
060    import com.liferay.portlet.asset.service.AssetVocabularyService;
061    import com.liferay.portlet.asset.service.persistence.AssetCategoryFinder;
062    import com.liferay.portlet.asset.service.persistence.AssetCategoryPersistence;
063    import com.liferay.portlet.asset.service.persistence.AssetCategoryPropertyFinder;
064    import com.liferay.portlet.asset.service.persistence.AssetCategoryPropertyPersistence;
065    import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
066    import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
067    import com.liferay.portlet.asset.service.persistence.AssetLinkFinder;
068    import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
069    import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
070    import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
071    import com.liferay.portlet.asset.service.persistence.AssetTagPropertyFinder;
072    import com.liferay.portlet.asset.service.persistence.AssetTagPropertyKeyFinder;
073    import com.liferay.portlet.asset.service.persistence.AssetTagPropertyPersistence;
074    import com.liferay.portlet.asset.service.persistence.AssetTagStatsPersistence;
075    import com.liferay.portlet.asset.service.persistence.AssetVocabularyFinder;
076    import com.liferay.portlet.asset.service.persistence.AssetVocabularyPersistence;
077    import com.liferay.portlet.blogs.service.BlogsEntryLocalService;
078    import com.liferay.portlet.blogs.service.BlogsEntryService;
079    import com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder;
080    import com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence;
081    import com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService;
082    import com.liferay.portlet.bookmarks.service.BookmarksEntryService;
083    import com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryFinder;
084    import com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryPersistence;
085    import com.liferay.portlet.documentlibrary.service.DLAppLocalService;
086    import com.liferay.portlet.documentlibrary.service.DLAppService;
087    import com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService;
088    import com.liferay.portlet.documentlibrary.service.DLFileEntryService;
089    import com.liferay.portlet.documentlibrary.service.DLFolderLocalService;
090    import com.liferay.portlet.documentlibrary.service.DLFolderService;
091    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
092    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence;
093    import com.liferay.portlet.documentlibrary.service.persistence.DLFolderFinder;
094    import com.liferay.portlet.documentlibrary.service.persistence.DLFolderPersistence;
095    import com.liferay.portlet.journal.service.JournalArticleLocalService;
096    import com.liferay.portlet.journal.service.JournalArticleResourceLocalService;
097    import com.liferay.portlet.journal.service.JournalArticleService;
098    import com.liferay.portlet.journal.service.persistence.JournalArticleFinder;
099    import com.liferay.portlet.journal.service.persistence.JournalArticlePersistence;
100    import com.liferay.portlet.journal.service.persistence.JournalArticleResourcePersistence;
101    import com.liferay.portlet.messageboards.service.MBMessageLocalService;
102    import com.liferay.portlet.messageboards.service.MBMessageService;
103    import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
104    import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
105    import com.liferay.portlet.social.service.SocialActivityCounterLocalService;
106    import com.liferay.portlet.social.service.SocialActivityLocalService;
107    import com.liferay.portlet.social.service.persistence.SocialActivityCounterFinder;
108    import com.liferay.portlet.social.service.persistence.SocialActivityCounterPersistence;
109    import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
110    import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
111    import com.liferay.portlet.wiki.service.WikiPageLocalService;
112    import com.liferay.portlet.wiki.service.WikiPageResourceLocalService;
113    import com.liferay.portlet.wiki.service.WikiPageService;
114    import com.liferay.portlet.wiki.service.persistence.WikiPageFinder;
115    import com.liferay.portlet.wiki.service.persistence.WikiPagePersistence;
116    import com.liferay.portlet.wiki.service.persistence.WikiPageResourcePersistence;
117    
118    import java.io.Serializable;
119    
120    import java.util.List;
121    
122    import javax.sql.DataSource;
123    
124    /**
125     * The base implementation of the asset entry local service.
126     *
127     * <p>
128     * This implementation exists only as a container for the default service methods generated by ServiceBuilder. All custom service methods should be put in {@link com.liferay.portlet.asset.service.impl.AssetEntryLocalServiceImpl}.
129     * </p>
130     *
131     * @author Brian Wing Shun Chan
132     * @see com.liferay.portlet.asset.service.impl.AssetEntryLocalServiceImpl
133     * @see com.liferay.portlet.asset.service.AssetEntryLocalServiceUtil
134     * @generated
135     */
136    public abstract class AssetEntryLocalServiceBaseImpl
137            extends BaseLocalServiceImpl implements AssetEntryLocalService,
138                    IdentifiableBean {
139            /*
140             * NOTE FOR DEVELOPERS:
141             *
142             * Never modify or reference this class directly. Always use {@link com.liferay.portlet.asset.service.AssetEntryLocalServiceUtil} to access the asset entry local service.
143             */
144    
145            /**
146             * Adds the asset entry to the database. Also notifies the appropriate model listeners.
147             *
148             * @param assetEntry the asset entry
149             * @return the asset entry that was added
150             * @throws SystemException if a system exception occurred
151             */
152            @Indexable(type = IndexableType.REINDEX)
153            public AssetEntry addAssetEntry(AssetEntry assetEntry)
154                    throws SystemException {
155                    assetEntry.setNew(true);
156    
157                    return assetEntryPersistence.update(assetEntry);
158            }
159    
160            /**
161             * Creates a new asset entry with the primary key. Does not add the asset entry to the database.
162             *
163             * @param entryId the primary key for the new asset entry
164             * @return the new asset entry
165             */
166            public AssetEntry createAssetEntry(long entryId) {
167                    return assetEntryPersistence.create(entryId);
168            }
169    
170            /**
171             * Deletes the asset entry with the primary key from the database. Also notifies the appropriate model listeners.
172             *
173             * @param entryId the primary key of the asset entry
174             * @return the asset entry that was removed
175             * @throws PortalException if a asset entry with the primary key could not be found
176             * @throws SystemException if a system exception occurred
177             */
178            @Indexable(type = IndexableType.DELETE)
179            public AssetEntry deleteAssetEntry(long entryId)
180                    throws PortalException, SystemException {
181                    return assetEntryPersistence.remove(entryId);
182            }
183    
184            /**
185             * Deletes the asset entry from the database. Also notifies the appropriate model listeners.
186             *
187             * @param assetEntry the asset entry
188             * @return the asset entry that was removed
189             * @throws SystemException if a system exception occurred
190             */
191            @Indexable(type = IndexableType.DELETE)
192            public AssetEntry deleteAssetEntry(AssetEntry assetEntry)
193                    throws SystemException {
194                    return assetEntryPersistence.remove(assetEntry);
195            }
196    
197            public DynamicQuery dynamicQuery() {
198                    Class<?> clazz = getClass();
199    
200                    return DynamicQueryFactoryUtil.forClass(AssetEntry.class,
201                            clazz.getClassLoader());
202            }
203    
204            /**
205             * Performs a dynamic query on the database and returns the matching rows.
206             *
207             * @param dynamicQuery the dynamic query
208             * @return the matching rows
209             * @throws SystemException if a system exception occurred
210             */
211            @SuppressWarnings("rawtypes")
212            public List dynamicQuery(DynamicQuery dynamicQuery)
213                    throws SystemException {
214                    return assetEntryPersistence.findWithDynamicQuery(dynamicQuery);
215            }
216    
217            /**
218             * Performs a dynamic query on the database and returns a range of the matching rows.
219             *
220             * <p>
221             * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.asset.model.impl.AssetEntryModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
222             * </p>
223             *
224             * @param dynamicQuery the dynamic query
225             * @param start the lower bound of the range of model instances
226             * @param end the upper bound of the range of model instances (not inclusive)
227             * @return the range of matching rows
228             * @throws SystemException if a system exception occurred
229             */
230            @SuppressWarnings("rawtypes")
231            public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
232                    throws SystemException {
233                    return assetEntryPersistence.findWithDynamicQuery(dynamicQuery, start,
234                            end);
235            }
236    
237            /**
238             * Performs a dynamic query on the database and returns an ordered range of the matching rows.
239             *
240             * <p>
241             * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.asset.model.impl.AssetEntryModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
242             * </p>
243             *
244             * @param dynamicQuery the dynamic query
245             * @param start the lower bound of the range of model instances
246             * @param end the upper bound of the range of model instances (not inclusive)
247             * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
248             * @return the ordered range of matching rows
249             * @throws SystemException if a system exception occurred
250             */
251            @SuppressWarnings("rawtypes")
252            public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
253                    OrderByComparator orderByComparator) throws SystemException {
254                    return assetEntryPersistence.findWithDynamicQuery(dynamicQuery, start,
255                            end, orderByComparator);
256            }
257    
258            /**
259             * Returns the number of rows that match the dynamic query.
260             *
261             * @param dynamicQuery the dynamic query
262             * @return the number of rows that match the dynamic query
263             * @throws SystemException if a system exception occurred
264             */
265            public long dynamicQueryCount(DynamicQuery dynamicQuery)
266                    throws SystemException {
267                    return assetEntryPersistence.countWithDynamicQuery(dynamicQuery);
268            }
269    
270            public AssetEntry fetchAssetEntry(long entryId) throws SystemException {
271                    return assetEntryPersistence.fetchByPrimaryKey(entryId);
272            }
273    
274            /**
275             * Returns the asset entry with the primary key.
276             *
277             * @param entryId the primary key of the asset entry
278             * @return the asset entry
279             * @throws PortalException if a asset entry with the primary key could not be found
280             * @throws SystemException if a system exception occurred
281             */
282            public AssetEntry getAssetEntry(long entryId)
283                    throws PortalException, SystemException {
284                    return assetEntryPersistence.findByPrimaryKey(entryId);
285            }
286    
287            public PersistedModel getPersistedModel(Serializable primaryKeyObj)
288                    throws PortalException, SystemException {
289                    return assetEntryPersistence.findByPrimaryKey(primaryKeyObj);
290            }
291    
292            /**
293             * Returns a range of all the asset entries.
294             *
295             * <p>
296             * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.asset.model.impl.AssetEntryModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
297             * </p>
298             *
299             * @param start the lower bound of the range of asset entries
300             * @param end the upper bound of the range of asset entries (not inclusive)
301             * @return the range of asset entries
302             * @throws SystemException if a system exception occurred
303             */
304            public List<AssetEntry> getAssetEntries(int start, int end)
305                    throws SystemException {
306                    return assetEntryPersistence.findAll(start, end);
307            }
308    
309            /**
310             * Returns the number of asset entries.
311             *
312             * @return the number of asset entries
313             * @throws SystemException if a system exception occurred
314             */
315            public int getAssetEntriesCount() throws SystemException {
316                    return assetEntryPersistence.countAll();
317            }
318    
319            /**
320             * Updates the asset entry in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
321             *
322             * @param assetEntry the asset entry
323             * @return the asset entry that was updated
324             * @throws SystemException if a system exception occurred
325             */
326            @Indexable(type = IndexableType.REINDEX)
327            public AssetEntry updateAssetEntry(AssetEntry assetEntry)
328                    throws SystemException {
329                    return assetEntryPersistence.update(assetEntry);
330            }
331    
332            /**
333             * @throws SystemException if a system exception occurred
334             */
335            public void addAssetCategoryAssetEntry(long categoryId, long entryId)
336                    throws SystemException {
337                    assetCategoryPersistence.addAssetEntry(categoryId, entryId);
338            }
339    
340            /**
341             * @throws SystemException if a system exception occurred
342             */
343            public void addAssetCategoryAssetEntry(long categoryId,
344                    AssetEntry assetEntry) throws SystemException {
345                    assetCategoryPersistence.addAssetEntry(categoryId, assetEntry);
346            }
347    
348            /**
349             * @throws SystemException if a system exception occurred
350             */
351            public void addAssetCategoryAssetEntries(long categoryId, long[] entryIds)
352                    throws SystemException {
353                    assetCategoryPersistence.addAssetEntries(categoryId, entryIds);
354            }
355    
356            /**
357             * @throws SystemException if a system exception occurred
358             */
359            public void addAssetCategoryAssetEntries(long categoryId,
360                    List<AssetEntry> AssetEntries) throws SystemException {
361                    assetCategoryPersistence.addAssetEntries(categoryId, AssetEntries);
362            }
363    
364            /**
365             * @throws SystemException if a system exception occurred
366             */
367            public void clearAssetCategoryAssetEntries(long categoryId)
368                    throws SystemException {
369                    assetCategoryPersistence.clearAssetEntries(categoryId);
370            }
371    
372            /**
373             * @throws SystemException if a system exception occurred
374             */
375            public void deleteAssetCategoryAssetEntry(long categoryId, long entryId)
376                    throws SystemException {
377                    assetCategoryPersistence.removeAssetEntry(categoryId, entryId);
378            }
379    
380            /**
381             * @throws SystemException if a system exception occurred
382             */
383            public void deleteAssetCategoryAssetEntry(long categoryId,
384                    AssetEntry assetEntry) throws SystemException {
385                    assetCategoryPersistence.removeAssetEntry(categoryId, assetEntry);
386            }
387    
388            /**
389             * @throws SystemException if a system exception occurred
390             */
391            public void deleteAssetCategoryAssetEntries(long categoryId, long[] entryIds)
392                    throws SystemException {
393                    assetCategoryPersistence.removeAssetEntries(categoryId, entryIds);
394            }
395    
396            /**
397             * @throws SystemException if a system exception occurred
398             */
399            public void deleteAssetCategoryAssetEntries(long categoryId,
400                    List<AssetEntry> AssetEntries) throws SystemException {
401                    assetCategoryPersistence.removeAssetEntries(categoryId, AssetEntries);
402            }
403    
404            /**
405             * @throws SystemException if a system exception occurred
406             */
407            public List<AssetEntry> getAssetCategoryAssetEntries(long categoryId)
408                    throws SystemException {
409                    return assetCategoryPersistence.getAssetEntries(categoryId);
410            }
411    
412            /**
413             * @throws SystemException if a system exception occurred
414             */
415            public List<AssetEntry> getAssetCategoryAssetEntries(long categoryId,
416                    int start, int end) throws SystemException {
417                    return assetCategoryPersistence.getAssetEntries(categoryId, start, end);
418            }
419    
420            /**
421             * @throws SystemException if a system exception occurred
422             */
423            public List<AssetEntry> getAssetCategoryAssetEntries(long categoryId,
424                    int start, int end, OrderByComparator orderByComparator)
425                    throws SystemException {
426                    return assetCategoryPersistence.getAssetEntries(categoryId, start, end,
427                            orderByComparator);
428            }
429    
430            /**
431             * @throws SystemException if a system exception occurred
432             */
433            public int getAssetCategoryAssetEntriesCount(long categoryId)
434                    throws SystemException {
435                    return assetCategoryPersistence.getAssetEntriesSize(categoryId);
436            }
437    
438            /**
439             * @throws SystemException if a system exception occurred
440             */
441            public boolean hasAssetCategoryAssetEntry(long categoryId, long entryId)
442                    throws SystemException {
443                    return assetCategoryPersistence.containsAssetEntry(categoryId, entryId);
444            }
445    
446            /**
447             * @throws SystemException if a system exception occurred
448             */
449            public boolean hasAssetCategoryAssetEntries(long categoryId)
450                    throws SystemException {
451                    return assetCategoryPersistence.containsAssetEntries(categoryId);
452            }
453    
454            /**
455             * @throws SystemException if a system exception occurred
456             */
457            public void setAssetCategoryAssetEntries(long categoryId, long[] entryIds)
458                    throws SystemException {
459                    assetCategoryPersistence.setAssetEntries(categoryId, entryIds);
460            }
461    
462            /**
463             * @throws SystemException if a system exception occurred
464             */
465            public void addAssetTagAssetEntry(long tagId, long entryId)
466                    throws SystemException {
467                    assetTagPersistence.addAssetEntry(tagId, entryId);
468            }
469    
470            /**
471             * @throws SystemException if a system exception occurred
472             */
473            public void addAssetTagAssetEntry(long tagId, AssetEntry assetEntry)
474                    throws SystemException {
475                    assetTagPersistence.addAssetEntry(tagId, assetEntry);
476            }
477    
478            /**
479             * @throws SystemException if a system exception occurred
480             */
481            public void addAssetTagAssetEntries(long tagId, long[] entryIds)
482                    throws SystemException {
483                    assetTagPersistence.addAssetEntries(tagId, entryIds);
484            }
485    
486            /**
487             * @throws SystemException if a system exception occurred
488             */
489            public void addAssetTagAssetEntries(long tagId,
490                    List<AssetEntry> AssetEntries) throws SystemException {
491                    assetTagPersistence.addAssetEntries(tagId, AssetEntries);
492            }
493    
494            /**
495             * @throws SystemException if a system exception occurred
496             */
497            public void clearAssetTagAssetEntries(long tagId) throws SystemException {
498                    assetTagPersistence.clearAssetEntries(tagId);
499            }
500    
501            /**
502             * @throws SystemException if a system exception occurred
503             */
504            public void deleteAssetTagAssetEntry(long tagId, long entryId)
505                    throws SystemException {
506                    assetTagPersistence.removeAssetEntry(tagId, entryId);
507            }
508    
509            /**
510             * @throws SystemException if a system exception occurred
511             */
512            public void deleteAssetTagAssetEntry(long tagId, AssetEntry assetEntry)
513                    throws SystemException {
514                    assetTagPersistence.removeAssetEntry(tagId, assetEntry);
515            }
516    
517            /**
518             * @throws SystemException if a system exception occurred
519             */
520            public void deleteAssetTagAssetEntries(long tagId, long[] entryIds)
521                    throws SystemException {
522                    assetTagPersistence.removeAssetEntries(tagId, entryIds);
523            }
524    
525            /**
526             * @throws SystemException if a system exception occurred
527             */
528            public void deleteAssetTagAssetEntries(long tagId,
529                    List<AssetEntry> AssetEntries) throws SystemException {
530                    assetTagPersistence.removeAssetEntries(tagId, AssetEntries);
531            }
532    
533            /**
534             * @throws SystemException if a system exception occurred
535             */
536            public List<AssetEntry> getAssetTagAssetEntries(long tagId)
537                    throws SystemException {
538                    return assetTagPersistence.getAssetEntries(tagId);
539            }
540    
541            /**
542             * @throws SystemException if a system exception occurred
543             */
544            public List<AssetEntry> getAssetTagAssetEntries(long tagId, int start,
545                    int end) throws SystemException {
546                    return assetTagPersistence.getAssetEntries(tagId, start, end);
547            }
548    
549            /**
550             * @throws SystemException if a system exception occurred
551             */
552            public List<AssetEntry> getAssetTagAssetEntries(long tagId, int start,
553                    int end, OrderByComparator orderByComparator) throws SystemException {
554                    return assetTagPersistence.getAssetEntries(tagId, start, end,
555                            orderByComparator);
556            }
557    
558            /**
559             * @throws SystemException if a system exception occurred
560             */
561            public int getAssetTagAssetEntriesCount(long tagId)
562                    throws SystemException {
563                    return assetTagPersistence.getAssetEntriesSize(tagId);
564            }
565    
566            /**
567             * @throws SystemException if a system exception occurred
568             */
569            public boolean hasAssetTagAssetEntry(long tagId, long entryId)
570                    throws SystemException {
571                    return assetTagPersistence.containsAssetEntry(tagId, entryId);
572            }
573    
574            /**
575             * @throws SystemException if a system exception occurred
576             */
577            public boolean hasAssetTagAssetEntries(long tagId)
578                    throws SystemException {
579                    return assetTagPersistence.containsAssetEntries(tagId);
580            }
581    
582            /**
583             * @throws SystemException if a system exception occurred
584             */
585            public void setAssetTagAssetEntries(long tagId, long[] entryIds)
586                    throws SystemException {
587                    assetTagPersistence.setAssetEntries(tagId, entryIds);
588            }
589    
590            /**
591             * Returns the asset category local service.
592             *
593             * @return the asset category local service
594             */
595            public AssetCategoryLocalService getAssetCategoryLocalService() {
596                    return assetCategoryLocalService;
597            }
598    
599            /**
600             * Sets the asset category local service.
601             *
602             * @param assetCategoryLocalService the asset category local service
603             */
604            public void setAssetCategoryLocalService(
605                    AssetCategoryLocalService assetCategoryLocalService) {
606                    this.assetCategoryLocalService = assetCategoryLocalService;
607            }
608    
609            /**
610             * Returns the asset category remote service.
611             *
612             * @return the asset category remote service
613             */
614            public AssetCategoryService getAssetCategoryService() {
615                    return assetCategoryService;
616            }
617    
618            /**
619             * Sets the asset category remote service.
620             *
621             * @param assetCategoryService the asset category remote service
622             */
623            public void setAssetCategoryService(
624                    AssetCategoryService assetCategoryService) {
625                    this.assetCategoryService = assetCategoryService;
626            }
627    
628            /**
629             * Returns the asset category persistence.
630             *
631             * @return the asset category persistence
632             */
633            public AssetCategoryPersistence getAssetCategoryPersistence() {
634                    return assetCategoryPersistence;
635            }
636    
637            /**
638             * Sets the asset category persistence.
639             *
640             * @param assetCategoryPersistence the asset category persistence
641             */
642            public void setAssetCategoryPersistence(
643                    AssetCategoryPersistence assetCategoryPersistence) {
644                    this.assetCategoryPersistence = assetCategoryPersistence;
645            }
646    
647            /**
648             * Returns the asset category finder.
649             *
650             * @return the asset category finder
651             */
652            public AssetCategoryFinder getAssetCategoryFinder() {
653                    return assetCategoryFinder;
654            }
655    
656            /**
657             * Sets the asset category finder.
658             *
659             * @param assetCategoryFinder the asset category finder
660             */
661            public void setAssetCategoryFinder(AssetCategoryFinder assetCategoryFinder) {
662                    this.assetCategoryFinder = assetCategoryFinder;
663            }
664    
665            /**
666             * Returns the asset category property local service.
667             *
668             * @return the asset category property local service
669             */
670            public AssetCategoryPropertyLocalService getAssetCategoryPropertyLocalService() {
671                    return assetCategoryPropertyLocalService;
672            }
673    
674            /**
675             * Sets the asset category property local service.
676             *
677             * @param assetCategoryPropertyLocalService the asset category property local service
678             */
679            public void setAssetCategoryPropertyLocalService(
680                    AssetCategoryPropertyLocalService assetCategoryPropertyLocalService) {
681                    this.assetCategoryPropertyLocalService = assetCategoryPropertyLocalService;
682            }
683    
684            /**
685             * Returns the asset category property remote service.
686             *
687             * @return the asset category property remote service
688             */
689            public AssetCategoryPropertyService getAssetCategoryPropertyService() {
690                    return assetCategoryPropertyService;
691            }
692    
693            /**
694             * Sets the asset category property remote service.
695             *
696             * @param assetCategoryPropertyService the asset category property remote service
697             */
698            public void setAssetCategoryPropertyService(
699                    AssetCategoryPropertyService assetCategoryPropertyService) {
700                    this.assetCategoryPropertyService = assetCategoryPropertyService;
701            }
702    
703            /**
704             * Returns the asset category property persistence.
705             *
706             * @return the asset category property persistence
707             */
708            public AssetCategoryPropertyPersistence getAssetCategoryPropertyPersistence() {
709                    return assetCategoryPropertyPersistence;
710            }
711    
712            /**
713             * Sets the asset category property persistence.
714             *
715             * @param assetCategoryPropertyPersistence the asset category property persistence
716             */
717            public void setAssetCategoryPropertyPersistence(
718                    AssetCategoryPropertyPersistence assetCategoryPropertyPersistence) {
719                    this.assetCategoryPropertyPersistence = assetCategoryPropertyPersistence;
720            }
721    
722            /**
723             * Returns the asset category property finder.
724             *
725             * @return the asset category property finder
726             */
727            public AssetCategoryPropertyFinder getAssetCategoryPropertyFinder() {
728                    return assetCategoryPropertyFinder;
729            }
730    
731            /**
732             * Sets the asset category property finder.
733             *
734             * @param assetCategoryPropertyFinder the asset category property finder
735             */
736            public void setAssetCategoryPropertyFinder(
737                    AssetCategoryPropertyFinder assetCategoryPropertyFinder) {
738                    this.assetCategoryPropertyFinder = assetCategoryPropertyFinder;
739            }
740    
741            /**
742             * Returns the asset entry local service.
743             *
744             * @return the asset entry local service
745             */
746            public AssetEntryLocalService getAssetEntryLocalService() {
747                    return assetEntryLocalService;
748            }
749    
750            /**
751             * Sets the asset entry local service.
752             *
753             * @param assetEntryLocalService the asset entry local service
754             */
755            public void setAssetEntryLocalService(
756                    AssetEntryLocalService assetEntryLocalService) {
757                    this.assetEntryLocalService = assetEntryLocalService;
758            }
759    
760            /**
761             * Returns the asset entry remote service.
762             *
763             * @return the asset entry remote service
764             */
765            public AssetEntryService getAssetEntryService() {
766                    return assetEntryService;
767            }
768    
769            /**
770             * Sets the asset entry remote service.
771             *
772             * @param assetEntryService the asset entry remote service
773             */
774            public void setAssetEntryService(AssetEntryService assetEntryService) {
775                    this.assetEntryService = assetEntryService;
776            }
777    
778            /**
779             * Returns the asset entry persistence.
780             *
781             * @return the asset entry persistence
782             */
783            public AssetEntryPersistence getAssetEntryPersistence() {
784                    return assetEntryPersistence;
785            }
786    
787            /**
788             * Sets the asset entry persistence.
789             *
790             * @param assetEntryPersistence the asset entry persistence
791             */
792            public void setAssetEntryPersistence(
793                    AssetEntryPersistence assetEntryPersistence) {
794                    this.assetEntryPersistence = assetEntryPersistence;
795            }
796    
797            /**
798             * Returns the asset entry finder.
799             *
800             * @return the asset entry finder
801             */
802            public AssetEntryFinder getAssetEntryFinder() {
803                    return assetEntryFinder;
804            }
805    
806            /**
807             * Sets the asset entry finder.
808             *
809             * @param assetEntryFinder the asset entry finder
810             */
811            public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
812                    this.assetEntryFinder = assetEntryFinder;
813            }
814    
815            /**
816             * Returns the asset link local service.
817             *
818             * @return the asset link local service
819             */
820            public AssetLinkLocalService getAssetLinkLocalService() {
821                    return assetLinkLocalService;
822            }
823    
824            /**
825             * Sets the asset link local service.
826             *
827             * @param assetLinkLocalService the asset link local service
828             */
829            public void setAssetLinkLocalService(
830                    AssetLinkLocalService assetLinkLocalService) {
831                    this.assetLinkLocalService = assetLinkLocalService;
832            }
833    
834            /**
835             * Returns the asset link persistence.
836             *
837             * @return the asset link persistence
838             */
839            public AssetLinkPersistence getAssetLinkPersistence() {
840                    return assetLinkPersistence;
841            }
842    
843            /**
844             * Sets the asset link persistence.
845             *
846             * @param assetLinkPersistence the asset link persistence
847             */
848            public void setAssetLinkPersistence(
849                    AssetLinkPersistence assetLinkPersistence) {
850                    this.assetLinkPersistence = assetLinkPersistence;
851            }
852    
853            /**
854             * Returns the asset link finder.
855             *
856             * @return the asset link finder
857             */
858            public AssetLinkFinder getAssetLinkFinder() {
859                    return assetLinkFinder;
860            }
861    
862            /**
863             * Sets the asset link finder.
864             *
865             * @param assetLinkFinder the asset link finder
866             */
867            public void setAssetLinkFinder(AssetLinkFinder assetLinkFinder) {
868                    this.assetLinkFinder = assetLinkFinder;
869            }
870    
871            /**
872             * Returns the asset tag local service.
873             *
874             * @return the asset tag local service
875             */
876            public AssetTagLocalService getAssetTagLocalService() {
877                    return assetTagLocalService;
878            }
879    
880            /**
881             * Sets the asset tag local service.
882             *
883             * @param assetTagLocalService the asset tag local service
884             */
885            public void setAssetTagLocalService(
886                    AssetTagLocalService assetTagLocalService) {
887                    this.assetTagLocalService = assetTagLocalService;
888            }
889    
890            /**
891             * Returns the asset tag remote service.
892             *
893             * @return the asset tag remote service
894             */
895            public AssetTagService getAssetTagService() {
896                    return assetTagService;
897            }
898    
899            /**
900             * Sets the asset tag remote service.
901             *
902             * @param assetTagService the asset tag remote service
903             */
904            public void setAssetTagService(AssetTagService assetTagService) {
905                    this.assetTagService = assetTagService;
906            }
907    
908            /**
909             * Returns the asset tag persistence.
910             *
911             * @return the asset tag persistence
912             */
913            public AssetTagPersistence getAssetTagPersistence() {
914                    return assetTagPersistence;
915            }
916    
917            /**
918             * Sets the asset tag persistence.
919             *
920             * @param assetTagPersistence the asset tag persistence
921             */
922            public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
923                    this.assetTagPersistence = assetTagPersistence;
924            }
925    
926            /**
927             * Returns the asset tag finder.
928             *
929             * @return the asset tag finder
930             */
931            public AssetTagFinder getAssetTagFinder() {
932                    return assetTagFinder;
933            }
934    
935            /**
936             * Sets the asset tag finder.
937             *
938             * @param assetTagFinder the asset tag finder
939             */
940            public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
941                    this.assetTagFinder = assetTagFinder;
942            }
943    
944            /**
945             * Returns the asset tag property local service.
946             *
947             * @return the asset tag property local service
948             */
949            public AssetTagPropertyLocalService getAssetTagPropertyLocalService() {
950                    return assetTagPropertyLocalService;
951            }
952    
953            /**
954             * Sets the asset tag property local service.
955             *
956             * @param assetTagPropertyLocalService the asset tag property local service
957             */
958            public void setAssetTagPropertyLocalService(
959                    AssetTagPropertyLocalService assetTagPropertyLocalService) {
960                    this.assetTagPropertyLocalService = assetTagPropertyLocalService;
961            }
962    
963            /**
964             * Returns the asset tag property remote service.
965             *
966             * @return the asset tag property remote service
967             */
968            public AssetTagPropertyService getAssetTagPropertyService() {
969                    return assetTagPropertyService;
970            }
971    
972            /**
973             * Sets the asset tag property remote service.
974             *
975             * @param assetTagPropertyService the asset tag property remote service
976             */
977            public void setAssetTagPropertyService(
978                    AssetTagPropertyService assetTagPropertyService) {
979                    this.assetTagPropertyService = assetTagPropertyService;
980            }
981    
982            /**
983             * Returns the asset tag property persistence.
984             *
985             * @return the asset tag property persistence
986             */
987            public AssetTagPropertyPersistence getAssetTagPropertyPersistence() {
988                    return assetTagPropertyPersistence;
989            }
990    
991            /**
992             * Sets the asset tag property persistence.
993             *
994             * @param assetTagPropertyPersistence the asset tag property persistence
995             */
996            public void setAssetTagPropertyPersistence(
997                    AssetTagPropertyPersistence assetTagPropertyPersistence) {
998                    this.assetTagPropertyPersistence = assetTagPropertyPersistence;
999            }
1000    
1001            /**
1002             * Returns the asset tag property finder.
1003             *
1004             * @return the asset tag property finder
1005             */
1006            public AssetTagPropertyFinder getAssetTagPropertyFinder() {
1007                    return assetTagPropertyFinder;
1008            }
1009    
1010            /**
1011             * Sets the asset tag property finder.
1012             *
1013             * @param assetTagPropertyFinder the asset tag property finder
1014             */
1015            public void setAssetTagPropertyFinder(
1016                    AssetTagPropertyFinder assetTagPropertyFinder) {
1017                    this.assetTagPropertyFinder = assetTagPropertyFinder;
1018            }
1019    
1020            /**
1021             * Returns the asset tag property key finder.
1022             *
1023             * @return the asset tag property key finder
1024             */
1025            public AssetTagPropertyKeyFinder getAssetTagPropertyKeyFinder() {
1026                    return assetTagPropertyKeyFinder;
1027            }
1028    
1029            /**
1030             * Sets the asset tag property key finder.
1031             *
1032             * @param assetTagPropertyKeyFinder the asset tag property key finder
1033             */
1034            public void setAssetTagPropertyKeyFinder(
1035                    AssetTagPropertyKeyFinder assetTagPropertyKeyFinder) {
1036                    this.assetTagPropertyKeyFinder = assetTagPropertyKeyFinder;
1037            }
1038    
1039            /**
1040             * Returns the asset tag stats local service.
1041             *
1042             * @return the asset tag stats local service
1043             */
1044            public AssetTagStatsLocalService getAssetTagStatsLocalService() {
1045                    return assetTagStatsLocalService;
1046            }
1047    
1048            /**
1049             * Sets the asset tag stats local service.
1050             *
1051             * @param assetTagStatsLocalService the asset tag stats local service
1052             */
1053            public void setAssetTagStatsLocalService(
1054                    AssetTagStatsLocalService assetTagStatsLocalService) {
1055                    this.assetTagStatsLocalService = assetTagStatsLocalService;
1056            }
1057    
1058            /**
1059             * Returns the asset tag stats persistence.
1060             *
1061             * @return the asset tag stats persistence
1062             */
1063            public AssetTagStatsPersistence getAssetTagStatsPersistence() {
1064                    return assetTagStatsPersistence;
1065            }
1066    
1067            /**
1068             * Sets the asset tag stats persistence.
1069             *
1070             * @param assetTagStatsPersistence the asset tag stats persistence
1071             */
1072            public void setAssetTagStatsPersistence(
1073                    AssetTagStatsPersistence assetTagStatsPersistence) {
1074                    this.assetTagStatsPersistence = assetTagStatsPersistence;
1075            }
1076    
1077            /**
1078             * Returns the asset vocabulary local service.
1079             *
1080             * @return the asset vocabulary local service
1081             */
1082            public AssetVocabularyLocalService getAssetVocabularyLocalService() {
1083                    return assetVocabularyLocalService;
1084            }
1085    
1086            /**
1087             * Sets the asset vocabulary local service.
1088             *
1089             * @param assetVocabularyLocalService the asset vocabulary local service
1090             */
1091            public void setAssetVocabularyLocalService(
1092                    AssetVocabularyLocalService assetVocabularyLocalService) {
1093                    this.assetVocabularyLocalService = assetVocabularyLocalService;
1094            }
1095    
1096            /**
1097             * Returns the asset vocabulary remote service.
1098             *
1099             * @return the asset vocabulary remote service
1100             */
1101            public AssetVocabularyService getAssetVocabularyService() {
1102                    return assetVocabularyService;
1103            }
1104    
1105            /**
1106             * Sets the asset vocabulary remote service.
1107             *
1108             * @param assetVocabularyService the asset vocabulary remote service
1109             */
1110            public void setAssetVocabularyService(
1111                    AssetVocabularyService assetVocabularyService) {
1112                    this.assetVocabularyService = assetVocabularyService;
1113            }
1114    
1115            /**
1116             * Returns the asset vocabulary persistence.
1117             *
1118             * @return the asset vocabulary persistence
1119             */
1120            public AssetVocabularyPersistence getAssetVocabularyPersistence() {
1121                    return assetVocabularyPersistence;
1122            }
1123    
1124            /**
1125             * Sets the asset vocabulary persistence.
1126             *
1127             * @param assetVocabularyPersistence the asset vocabulary persistence
1128             */
1129            public void setAssetVocabularyPersistence(
1130                    AssetVocabularyPersistence assetVocabularyPersistence) {
1131                    this.assetVocabularyPersistence = assetVocabularyPersistence;
1132            }
1133    
1134            /**
1135             * Returns the asset vocabulary finder.
1136             *
1137             * @return the asset vocabulary finder
1138             */
1139            public AssetVocabularyFinder getAssetVocabularyFinder() {
1140                    return assetVocabularyFinder;
1141            }
1142    
1143            /**
1144             * Sets the asset vocabulary finder.
1145             *
1146             * @param assetVocabularyFinder the asset vocabulary finder
1147             */
1148            public void setAssetVocabularyFinder(
1149                    AssetVocabularyFinder assetVocabularyFinder) {
1150                    this.assetVocabularyFinder = assetVocabularyFinder;
1151            }
1152    
1153            /**
1154             * Returns the counter local service.
1155             *
1156             * @return the counter local service
1157             */
1158            public CounterLocalService getCounterLocalService() {
1159                    return counterLocalService;
1160            }
1161    
1162            /**
1163             * Sets the counter local service.
1164             *
1165             * @param counterLocalService the counter local service
1166             */
1167            public void setCounterLocalService(CounterLocalService counterLocalService) {
1168                    this.counterLocalService = counterLocalService;
1169            }
1170    
1171            /**
1172             * Returns the company local service.
1173             *
1174             * @return the company local service
1175             */
1176            public CompanyLocalService getCompanyLocalService() {
1177                    return companyLocalService;
1178            }
1179    
1180            /**
1181             * Sets the company local service.
1182             *
1183             * @param companyLocalService the company local service
1184             */
1185            public void setCompanyLocalService(CompanyLocalService companyLocalService) {
1186                    this.companyLocalService = companyLocalService;
1187            }
1188    
1189            /**
1190             * Returns the company remote service.
1191             *
1192             * @return the company remote service
1193             */
1194            public CompanyService getCompanyService() {
1195                    return companyService;
1196            }
1197    
1198            /**
1199             * Sets the company remote service.
1200             *
1201             * @param companyService the company remote service
1202             */
1203            public void setCompanyService(CompanyService companyService) {
1204                    this.companyService = companyService;
1205            }
1206    
1207            /**
1208             * Returns the company persistence.
1209             *
1210             * @return the company persistence
1211             */
1212            public CompanyPersistence getCompanyPersistence() {
1213                    return companyPersistence;
1214            }
1215    
1216            /**
1217             * Sets the company persistence.
1218             *
1219             * @param companyPersistence the company persistence
1220             */
1221            public void setCompanyPersistence(CompanyPersistence companyPersistence) {
1222                    this.companyPersistence = companyPersistence;
1223            }
1224    
1225            /**
1226             * Returns the group local service.
1227             *
1228             * @return the group local service
1229             */
1230            public GroupLocalService getGroupLocalService() {
1231                    return groupLocalService;
1232            }
1233    
1234            /**
1235             * Sets the group local service.
1236             *
1237             * @param groupLocalService the group local service
1238             */
1239            public void setGroupLocalService(GroupLocalService groupLocalService) {
1240                    this.groupLocalService = groupLocalService;
1241            }
1242    
1243            /**
1244             * Returns the group remote service.
1245             *
1246             * @return the group remote service
1247             */
1248            public GroupService getGroupService() {
1249                    return groupService;
1250            }
1251    
1252            /**
1253             * Sets the group remote service.
1254             *
1255             * @param groupService the group remote service
1256             */
1257            public void setGroupService(GroupService groupService) {
1258                    this.groupService = groupService;
1259            }
1260    
1261            /**
1262             * Returns the group persistence.
1263             *
1264             * @return the group persistence
1265             */
1266            public GroupPersistence getGroupPersistence() {
1267                    return groupPersistence;
1268            }
1269    
1270            /**
1271             * Sets the group persistence.
1272             *
1273             * @param groupPersistence the group persistence
1274             */
1275            public void setGroupPersistence(GroupPersistence groupPersistence) {
1276                    this.groupPersistence = groupPersistence;
1277            }
1278    
1279            /**
1280             * Returns the group finder.
1281             *
1282             * @return the group finder
1283             */
1284            public GroupFinder getGroupFinder() {
1285                    return groupFinder;
1286            }
1287    
1288            /**
1289             * Sets the group finder.
1290             *
1291             * @param groupFinder the group finder
1292             */
1293            public void setGroupFinder(GroupFinder groupFinder) {
1294                    this.groupFinder = groupFinder;
1295            }
1296    
1297            /**
1298             * Returns the resource local service.
1299             *
1300             * @return the resource local service
1301             */
1302            public ResourceLocalService getResourceLocalService() {
1303                    return resourceLocalService;
1304            }
1305    
1306            /**
1307             * Sets the resource local service.
1308             *
1309             * @param resourceLocalService the resource local service
1310             */
1311            public void setResourceLocalService(
1312                    ResourceLocalService resourceLocalService) {
1313                    this.resourceLocalService = resourceLocalService;
1314            }
1315    
1316            /**
1317             * Returns the user local service.
1318             *
1319             * @return the user local service
1320             */
1321            public UserLocalService getUserLocalService() {
1322                    return userLocalService;
1323            }
1324    
1325            /**
1326             * Sets the user local service.
1327             *
1328             * @param userLocalService the user local service
1329             */
1330            public void setUserLocalService(UserLocalService userLocalService) {
1331                    this.userLocalService = userLocalService;
1332            }
1333    
1334            /**
1335             * Returns the user remote service.
1336             *
1337             * @return the user remote service
1338             */
1339            public UserService getUserService() {
1340                    return userService;
1341            }
1342    
1343            /**
1344             * Sets the user remote service.
1345             *
1346             * @param userService the user remote service
1347             */
1348            public void setUserService(UserService userService) {
1349                    this.userService = userService;
1350            }
1351    
1352            /**
1353             * Returns the user persistence.
1354             *
1355             * @return the user persistence
1356             */
1357            public UserPersistence getUserPersistence() {
1358                    return userPersistence;
1359            }
1360    
1361            /**
1362             * Sets the user persistence.
1363             *
1364             * @param userPersistence the user persistence
1365             */
1366            public void setUserPersistence(UserPersistence userPersistence) {
1367                    this.userPersistence = userPersistence;
1368            }
1369    
1370            /**
1371             * Returns the user finder.
1372             *
1373             * @return the user finder
1374             */
1375            public UserFinder getUserFinder() {
1376                    return userFinder;
1377            }
1378    
1379            /**
1380             * Sets the user finder.
1381             *
1382             * @param userFinder the user finder
1383             */
1384            public void setUserFinder(UserFinder userFinder) {
1385                    this.userFinder = userFinder;
1386            }
1387    
1388            /**
1389             * Returns the blogs entry local service.
1390             *
1391             * @return the blogs entry local service
1392             */
1393            public BlogsEntryLocalService getBlogsEntryLocalService() {
1394                    return blogsEntryLocalService;
1395            }
1396    
1397            /**
1398             * Sets the blogs entry local service.
1399             *
1400             * @param blogsEntryLocalService the blogs entry local service
1401             */
1402            public void setBlogsEntryLocalService(
1403                    BlogsEntryLocalService blogsEntryLocalService) {
1404                    this.blogsEntryLocalService = blogsEntryLocalService;
1405            }
1406    
1407            /**
1408             * Returns the blogs entry remote service.
1409             *
1410             * @return the blogs entry remote service
1411             */
1412            public BlogsEntryService getBlogsEntryService() {
1413                    return blogsEntryService;
1414            }
1415    
1416            /**
1417             * Sets the blogs entry remote service.
1418             *
1419             * @param blogsEntryService the blogs entry remote service
1420             */
1421            public void setBlogsEntryService(BlogsEntryService blogsEntryService) {
1422                    this.blogsEntryService = blogsEntryService;
1423            }
1424    
1425            /**
1426             * Returns the blogs entry persistence.
1427             *
1428             * @return the blogs entry persistence
1429             */
1430            public BlogsEntryPersistence getBlogsEntryPersistence() {
1431                    return blogsEntryPersistence;
1432            }
1433    
1434            /**
1435             * Sets the blogs entry persistence.
1436             *
1437             * @param blogsEntryPersistence the blogs entry persistence
1438             */
1439            public void setBlogsEntryPersistence(
1440                    BlogsEntryPersistence blogsEntryPersistence) {
1441                    this.blogsEntryPersistence = blogsEntryPersistence;
1442            }
1443    
1444            /**
1445             * Returns the blogs entry finder.
1446             *
1447             * @return the blogs entry finder
1448             */
1449            public BlogsEntryFinder getBlogsEntryFinder() {
1450                    return blogsEntryFinder;
1451            }
1452    
1453            /**
1454             * Sets the blogs entry finder.
1455             *
1456             * @param blogsEntryFinder the blogs entry finder
1457             */
1458            public void setBlogsEntryFinder(BlogsEntryFinder blogsEntryFinder) {
1459                    this.blogsEntryFinder = blogsEntryFinder;
1460            }
1461    
1462            /**
1463             * Returns the bookmarks entry local service.
1464             *
1465             * @return the bookmarks entry local service
1466             */
1467            public BookmarksEntryLocalService getBookmarksEntryLocalService() {
1468                    return bookmarksEntryLocalService;
1469            }
1470    
1471            /**
1472             * Sets the bookmarks entry local service.
1473             *
1474             * @param bookmarksEntryLocalService the bookmarks entry local service
1475             */
1476            public void setBookmarksEntryLocalService(
1477                    BookmarksEntryLocalService bookmarksEntryLocalService) {
1478                    this.bookmarksEntryLocalService = bookmarksEntryLocalService;
1479            }
1480    
1481            /**
1482             * Returns the bookmarks entry remote service.
1483             *
1484             * @return the bookmarks entry remote service
1485             */
1486            public BookmarksEntryService getBookmarksEntryService() {
1487                    return bookmarksEntryService;
1488            }
1489    
1490            /**
1491             * Sets the bookmarks entry remote service.
1492             *
1493             * @param bookmarksEntryService the bookmarks entry remote service
1494             */
1495            public void setBookmarksEntryService(
1496                    BookmarksEntryService bookmarksEntryService) {
1497                    this.bookmarksEntryService = bookmarksEntryService;
1498            }
1499    
1500            /**
1501             * Returns the bookmarks entry persistence.
1502             *
1503             * @return the bookmarks entry persistence
1504             */
1505            public BookmarksEntryPersistence getBookmarksEntryPersistence() {
1506                    return bookmarksEntryPersistence;
1507            }
1508    
1509            /**
1510             * Sets the bookmarks entry persistence.
1511             *
1512             * @param bookmarksEntryPersistence the bookmarks entry persistence
1513             */
1514            public void setBookmarksEntryPersistence(
1515                    BookmarksEntryPersistence bookmarksEntryPersistence) {
1516                    this.bookmarksEntryPersistence = bookmarksEntryPersistence;
1517            }
1518    
1519            /**
1520             * Returns the bookmarks entry finder.
1521             *
1522             * @return the bookmarks entry finder
1523             */
1524            public BookmarksEntryFinder getBookmarksEntryFinder() {
1525                    return bookmarksEntryFinder;
1526            }
1527    
1528            /**
1529             * Sets the bookmarks entry finder.
1530             *
1531             * @param bookmarksEntryFinder the bookmarks entry finder
1532             */
1533            public void setBookmarksEntryFinder(
1534                    BookmarksEntryFinder bookmarksEntryFinder) {
1535                    this.bookmarksEntryFinder = bookmarksEntryFinder;
1536            }
1537    
1538            /**
1539             * Returns the d l app local service.
1540             *
1541             * @return the d l app local service
1542             */
1543            public DLAppLocalService getDLAppLocalService() {
1544                    return dlAppLocalService;
1545            }
1546    
1547            /**
1548             * Sets the d l app local service.
1549             *
1550             * @param dlAppLocalService the d l app local service
1551             */
1552            public void setDLAppLocalService(DLAppLocalService dlAppLocalService) {
1553                    this.dlAppLocalService = dlAppLocalService;
1554            }
1555    
1556            /**
1557             * Returns the d l app remote service.
1558             *
1559             * @return the d l app remote service
1560             */
1561            public DLAppService getDLAppService() {
1562                    return dlAppService;
1563            }
1564    
1565            /**
1566             * Sets the d l app remote service.
1567             *
1568             * @param dlAppService the d l app remote service
1569             */
1570            public void setDLAppService(DLAppService dlAppService) {
1571                    this.dlAppService = dlAppService;
1572            }
1573    
1574            /**
1575             * Returns the document library file entry local service.
1576             *
1577             * @return the document library file entry local service
1578             */
1579            public DLFileEntryLocalService getDLFileEntryLocalService() {
1580                    return dlFileEntryLocalService;
1581            }
1582    
1583            /**
1584             * Sets the document library file entry local service.
1585             *
1586             * @param dlFileEntryLocalService the document library file entry local service
1587             */
1588            public void setDLFileEntryLocalService(
1589                    DLFileEntryLocalService dlFileEntryLocalService) {
1590                    this.dlFileEntryLocalService = dlFileEntryLocalService;
1591            }
1592    
1593            /**
1594             * Returns the document library file entry remote service.
1595             *
1596             * @return the document library file entry remote service
1597             */
1598            public DLFileEntryService getDLFileEntryService() {
1599                    return dlFileEntryService;
1600            }
1601    
1602            /**
1603             * Sets the document library file entry remote service.
1604             *
1605             * @param dlFileEntryService the document library file entry remote service
1606             */
1607            public void setDLFileEntryService(DLFileEntryService dlFileEntryService) {
1608                    this.dlFileEntryService = dlFileEntryService;
1609            }
1610    
1611            /**
1612             * Returns the document library file entry persistence.
1613             *
1614             * @return the document library file entry persistence
1615             */
1616            public DLFileEntryPersistence getDLFileEntryPersistence() {
1617                    return dlFileEntryPersistence;
1618            }
1619    
1620            /**
1621             * Sets the document library file entry persistence.
1622             *
1623             * @param dlFileEntryPersistence the document library file entry persistence
1624             */
1625            public void setDLFileEntryPersistence(
1626                    DLFileEntryPersistence dlFileEntryPersistence) {
1627                    this.dlFileEntryPersistence = dlFileEntryPersistence;
1628            }
1629    
1630            /**
1631             * Returns the document library file entry finder.
1632             *
1633             * @return the document library file entry finder
1634             */
1635            public DLFileEntryFinder getDLFileEntryFinder() {
1636                    return dlFileEntryFinder;
1637            }
1638    
1639            /**
1640             * Sets the document library file entry finder.
1641             *
1642             * @param dlFileEntryFinder the document library file entry finder
1643             */
1644            public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
1645                    this.dlFileEntryFinder = dlFileEntryFinder;
1646            }
1647    
1648            /**
1649             * Returns the document library folder local service.
1650             *
1651             * @return the document library folder local service
1652             */
1653            public DLFolderLocalService getDLFolderLocalService() {
1654                    return dlFolderLocalService;
1655            }
1656    
1657            /**
1658             * Sets the document library folder local service.
1659             *
1660             * @param dlFolderLocalService the document library folder local service
1661             */
1662            public void setDLFolderLocalService(
1663                    DLFolderLocalService dlFolderLocalService) {
1664                    this.dlFolderLocalService = dlFolderLocalService;
1665            }
1666    
1667            /**
1668             * Returns the document library folder remote service.
1669             *
1670             * @return the document library folder remote service
1671             */
1672            public DLFolderService getDLFolderService() {
1673                    return dlFolderService;
1674            }
1675    
1676            /**
1677             * Sets the document library folder remote service.
1678             *
1679             * @param dlFolderService the document library folder remote service
1680             */
1681            public void setDLFolderService(DLFolderService dlFolderService) {
1682                    this.dlFolderService = dlFolderService;
1683            }
1684    
1685            /**
1686             * Returns the document library folder persistence.
1687             *
1688             * @return the document library folder persistence
1689             */
1690            public DLFolderPersistence getDLFolderPersistence() {
1691                    return dlFolderPersistence;
1692            }
1693    
1694            /**
1695             * Sets the document library folder persistence.
1696             *
1697             * @param dlFolderPersistence the document library folder persistence
1698             */
1699            public void setDLFolderPersistence(DLFolderPersistence dlFolderPersistence) {
1700                    this.dlFolderPersistence = dlFolderPersistence;
1701            }
1702    
1703            /**
1704             * Returns the document library folder finder.
1705             *
1706             * @return the document library folder finder
1707             */
1708            public DLFolderFinder getDLFolderFinder() {
1709                    return dlFolderFinder;
1710            }
1711    
1712            /**
1713             * Sets the document library folder finder.
1714             *
1715             * @param dlFolderFinder the document library folder finder
1716             */
1717            public void setDLFolderFinder(DLFolderFinder dlFolderFinder) {
1718                    this.dlFolderFinder = dlFolderFinder;
1719            }
1720    
1721            /**
1722             * Returns the journal article local service.
1723             *
1724             * @return the journal article local service
1725             */
1726            public JournalArticleLocalService getJournalArticleLocalService() {
1727                    return journalArticleLocalService;
1728            }
1729    
1730            /**
1731             * Sets the journal article local service.
1732             *
1733             * @param journalArticleLocalService the journal article local service
1734             */
1735            public void setJournalArticleLocalService(
1736                    JournalArticleLocalService journalArticleLocalService) {
1737                    this.journalArticleLocalService = journalArticleLocalService;
1738            }
1739    
1740            /**
1741             * Returns the journal article remote service.
1742             *
1743             * @return the journal article remote service
1744             */
1745            public JournalArticleService getJournalArticleService() {
1746                    return journalArticleService;
1747            }
1748    
1749            /**
1750             * Sets the journal article remote service.
1751             *
1752             * @param journalArticleService the journal article remote service
1753             */
1754            public void setJournalArticleService(
1755                    JournalArticleService journalArticleService) {
1756                    this.journalArticleService = journalArticleService;
1757            }
1758    
1759            /**
1760             * Returns the journal article persistence.
1761             *
1762             * @return the journal article persistence
1763             */
1764            public JournalArticlePersistence getJournalArticlePersistence() {
1765                    return journalArticlePersistence;
1766            }
1767    
1768            /**
1769             * Sets the journal article persistence.
1770             *
1771             * @param journalArticlePersistence the journal article persistence
1772             */
1773            public void setJournalArticlePersistence(
1774                    JournalArticlePersistence journalArticlePersistence) {
1775                    this.journalArticlePersistence = journalArticlePersistence;
1776            }
1777    
1778            /**
1779             * Returns the journal article finder.
1780             *
1781             * @return the journal article finder
1782             */
1783            public JournalArticleFinder getJournalArticleFinder() {
1784                    return journalArticleFinder;
1785            }
1786    
1787            /**
1788             * Sets the journal article finder.
1789             *
1790             * @param journalArticleFinder the journal article finder
1791             */
1792            public void setJournalArticleFinder(
1793                    JournalArticleFinder journalArticleFinder) {
1794                    this.journalArticleFinder = journalArticleFinder;
1795            }
1796    
1797            /**
1798             * Returns the journal article resource local service.
1799             *
1800             * @return the journal article resource local service
1801             */
1802            public JournalArticleResourceLocalService getJournalArticleResourceLocalService() {
1803                    return journalArticleResourceLocalService;
1804            }
1805    
1806            /**
1807             * Sets the journal article resource local service.
1808             *
1809             * @param journalArticleResourceLocalService the journal article resource local service
1810             */
1811            public void setJournalArticleResourceLocalService(
1812                    JournalArticleResourceLocalService journalArticleResourceLocalService) {
1813                    this.journalArticleResourceLocalService = journalArticleResourceLocalService;
1814            }
1815    
1816            /**
1817             * Returns the journal article resource persistence.
1818             *
1819             * @return the journal article resource persistence
1820             */
1821            public JournalArticleResourcePersistence getJournalArticleResourcePersistence() {
1822                    return journalArticleResourcePersistence;
1823            }
1824    
1825            /**
1826             * Sets the journal article resource persistence.
1827             *
1828             * @param journalArticleResourcePersistence the journal article resource persistence
1829             */
1830            public void setJournalArticleResourcePersistence(
1831                    JournalArticleResourcePersistence journalArticleResourcePersistence) {
1832                    this.journalArticleResourcePersistence = journalArticleResourcePersistence;
1833            }
1834    
1835            /**
1836             * Returns the message-boards message local service.
1837             *
1838             * @return the message-boards message local service
1839             */
1840            public MBMessageLocalService getMBMessageLocalService() {
1841                    return mbMessageLocalService;
1842            }
1843    
1844            /**
1845             * Sets the message-boards message local service.
1846             *
1847             * @param mbMessageLocalService the message-boards message local service
1848             */
1849            public void setMBMessageLocalService(
1850                    MBMessageLocalService mbMessageLocalService) {
1851                    this.mbMessageLocalService = mbMessageLocalService;
1852            }
1853    
1854            /**
1855             * Returns the message-boards message remote service.
1856             *
1857             * @return the message-boards message remote service
1858             */
1859            public MBMessageService getMBMessageService() {
1860                    return mbMessageService;
1861            }
1862    
1863            /**
1864             * Sets the message-boards message remote service.
1865             *
1866             * @param mbMessageService the message-boards message remote service
1867             */
1868            public void setMBMessageService(MBMessageService mbMessageService) {
1869                    this.mbMessageService = mbMessageService;
1870            }
1871    
1872            /**
1873             * Returns the message-boards message persistence.
1874             *
1875             * @return the message-boards message persistence
1876             */
1877            public MBMessagePersistence getMBMessagePersistence() {
1878                    return mbMessagePersistence;
1879            }
1880    
1881            /**
1882             * Sets the message-boards message persistence.
1883             *
1884             * @param mbMessagePersistence the message-boards message persistence
1885             */
1886            public void setMBMessagePersistence(
1887                    MBMessagePersistence mbMessagePersistence) {
1888                    this.mbMessagePersistence = mbMessagePersistence;
1889            }
1890    
1891            /**
1892             * Returns the message-boards message finder.
1893             *
1894             * @return the message-boards message finder
1895             */
1896            public MBMessageFinder getMBMessageFinder() {
1897                    return mbMessageFinder;
1898            }
1899    
1900            /**
1901             * Sets the message-boards message finder.
1902             *
1903             * @param mbMessageFinder the message-boards message finder
1904             */
1905            public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
1906                    this.mbMessageFinder = mbMessageFinder;
1907            }
1908    
1909            /**
1910             * Returns the social activity local service.
1911             *
1912             * @return the social activity local service
1913             */
1914            public SocialActivityLocalService getSocialActivityLocalService() {
1915                    return socialActivityLocalService;
1916            }
1917    
1918            /**
1919             * Sets the social activity local service.
1920             *
1921             * @param socialActivityLocalService the social activity local service
1922             */
1923            public void setSocialActivityLocalService(
1924                    SocialActivityLocalService socialActivityLocalService) {
1925                    this.socialActivityLocalService = socialActivityLocalService;
1926            }
1927    
1928            /**
1929             * Returns the social activity persistence.
1930             *
1931             * @return the social activity persistence
1932             */
1933            public SocialActivityPersistence getSocialActivityPersistence() {
1934                    return socialActivityPersistence;
1935            }
1936    
1937            /**
1938             * Sets the social activity persistence.
1939             *
1940             * @param socialActivityPersistence the social activity persistence
1941             */
1942            public void setSocialActivityPersistence(
1943                    SocialActivityPersistence socialActivityPersistence) {
1944                    this.socialActivityPersistence = socialActivityPersistence;
1945            }
1946    
1947            /**
1948             * Returns the social activity finder.
1949             *
1950             * @return the social activity finder
1951             */
1952            public SocialActivityFinder getSocialActivityFinder() {
1953                    return socialActivityFinder;
1954            }
1955    
1956            /**
1957             * Sets the social activity finder.
1958             *
1959             * @param socialActivityFinder the social activity finder
1960             */
1961            public void setSocialActivityFinder(
1962                    SocialActivityFinder socialActivityFinder) {
1963                    this.socialActivityFinder = socialActivityFinder;
1964            }
1965    
1966            /**
1967             * Returns the social activity counter local service.
1968             *
1969             * @return the social activity counter local service
1970             */
1971            public SocialActivityCounterLocalService getSocialActivityCounterLocalService() {
1972                    return socialActivityCounterLocalService;
1973            }
1974    
1975            /**
1976             * Sets the social activity counter local service.
1977             *
1978             * @param socialActivityCounterLocalService the social activity counter local service
1979             */
1980            public void setSocialActivityCounterLocalService(
1981                    SocialActivityCounterLocalService socialActivityCounterLocalService) {
1982                    this.socialActivityCounterLocalService = socialActivityCounterLocalService;
1983            }
1984    
1985            /**
1986             * Returns the social activity counter persistence.
1987             *
1988             * @return the social activity counter persistence
1989             */
1990            public SocialActivityCounterPersistence getSocialActivityCounterPersistence() {
1991                    return socialActivityCounterPersistence;
1992            }
1993    
1994            /**
1995             * Sets the social activity counter persistence.
1996             *
1997             * @param socialActivityCounterPersistence the social activity counter persistence
1998             */
1999            public void setSocialActivityCounterPersistence(
2000                    SocialActivityCounterPersistence socialActivityCounterPersistence) {
2001                    this.socialActivityCounterPersistence = socialActivityCounterPersistence;
2002            }
2003    
2004            /**
2005             * Returns the social activity counter finder.
2006             *
2007             * @return the social activity counter finder
2008             */
2009            public SocialActivityCounterFinder getSocialActivityCounterFinder() {
2010                    return socialActivityCounterFinder;
2011            }
2012    
2013            /**
2014             * Sets the social activity counter finder.
2015             *
2016             * @param socialActivityCounterFinder the social activity counter finder
2017             */
2018            public void setSocialActivityCounterFinder(
2019                    SocialActivityCounterFinder socialActivityCounterFinder) {
2020                    this.socialActivityCounterFinder = socialActivityCounterFinder;
2021            }
2022    
2023            /**
2024             * Returns the wiki page local service.
2025             *
2026             * @return the wiki page local service
2027             */
2028            public WikiPageLocalService getWikiPageLocalService() {
2029                    return wikiPageLocalService;
2030            }
2031    
2032            /**
2033             * Sets the wiki page local service.
2034             *
2035             * @param wikiPageLocalService the wiki page local service
2036             */
2037            public void setWikiPageLocalService(
2038                    WikiPageLocalService wikiPageLocalService) {
2039                    this.wikiPageLocalService = wikiPageLocalService;
2040            }
2041    
2042            /**
2043             * Returns the wiki page remote service.
2044             *
2045             * @return the wiki page remote service
2046             */
2047            public WikiPageService getWikiPageService() {
2048                    return wikiPageService;
2049            }
2050    
2051            /**
2052             * Sets the wiki page remote service.
2053             *
2054             * @param wikiPageService the wiki page remote service
2055             */
2056            public void setWikiPageService(WikiPageService wikiPageService) {
2057                    this.wikiPageService = wikiPageService;
2058            }
2059    
2060            /**
2061             * Returns the wiki page persistence.
2062             *
2063             * @return the wiki page persistence
2064             */
2065            public WikiPagePersistence getWikiPagePersistence() {
2066                    return wikiPagePersistence;
2067            }
2068    
2069            /**
2070             * Sets the wiki page persistence.
2071             *
2072             * @param wikiPagePersistence the wiki page persistence
2073             */
2074            public void setWikiPagePersistence(WikiPagePersistence wikiPagePersistence) {
2075                    this.wikiPagePersistence = wikiPagePersistence;
2076            }
2077    
2078            /**
2079             * Returns the wiki page finder.
2080             *
2081             * @return the wiki page finder
2082             */
2083            public WikiPageFinder getWikiPageFinder() {
2084                    return wikiPageFinder;
2085            }
2086    
2087            /**
2088             * Sets the wiki page finder.
2089             *
2090             * @param wikiPageFinder the wiki page finder
2091             */
2092            public void setWikiPageFinder(WikiPageFinder wikiPageFinder) {
2093                    this.wikiPageFinder = wikiPageFinder;
2094            }
2095    
2096            /**
2097             * Returns the wiki page resource local service.
2098             *
2099             * @return the wiki page resource local service
2100             */
2101            public WikiPageResourceLocalService getWikiPageResourceLocalService() {
2102                    return wikiPageResourceLocalService;
2103            }
2104    
2105            /**
2106             * Sets the wiki page resource local service.
2107             *
2108             * @param wikiPageResourceLocalService the wiki page resource local service
2109             */
2110            public void setWikiPageResourceLocalService(
2111                    WikiPageResourceLocalService wikiPageResourceLocalService) {
2112                    this.wikiPageResourceLocalService = wikiPageResourceLocalService;
2113            }
2114    
2115            /**
2116             * Returns the wiki page resource persistence.
2117             *
2118             * @return the wiki page resource persistence
2119             */
2120            public WikiPageResourcePersistence getWikiPageResourcePersistence() {
2121                    return wikiPageResourcePersistence;
2122            }
2123    
2124            /**
2125             * Sets the wiki page resource persistence.
2126             *
2127             * @param wikiPageResourcePersistence the wiki page resource persistence
2128             */
2129            public void setWikiPageResourcePersistence(
2130                    WikiPageResourcePersistence wikiPageResourcePersistence) {
2131                    this.wikiPageResourcePersistence = wikiPageResourcePersistence;
2132            }
2133    
2134            public void afterPropertiesSet() {
2135                    persistedModelLocalServiceRegistry.register("com.liferay.portlet.asset.model.AssetEntry",
2136                            assetEntryLocalService);
2137            }
2138    
2139            public void destroy() {
2140                    persistedModelLocalServiceRegistry.unregister(
2141                            "com.liferay.portlet.asset.model.AssetEntry");
2142            }
2143    
2144            /**
2145             * Returns the Spring bean ID for this bean.
2146             *
2147             * @return the Spring bean ID for this bean
2148             */
2149            public String getBeanIdentifier() {
2150                    return _beanIdentifier;
2151            }
2152    
2153            /**
2154             * Sets the Spring bean ID for this bean.
2155             *
2156             * @param beanIdentifier the Spring bean ID for this bean
2157             */
2158            public void setBeanIdentifier(String beanIdentifier) {
2159                    _beanIdentifier = beanIdentifier;
2160            }
2161    
2162            protected Class<?> getModelClass() {
2163                    return AssetEntry.class;
2164            }
2165    
2166            protected String getModelClassName() {
2167                    return AssetEntry.class.getName();
2168            }
2169    
2170            /**
2171             * Performs an SQL query.
2172             *
2173             * @param sql the sql query
2174             */
2175            protected void runSQL(String sql) throws SystemException {
2176                    try {
2177                            DataSource dataSource = assetEntryPersistence.getDataSource();
2178    
2179                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
2180                                            sql, new int[0]);
2181    
2182                            sqlUpdate.update();
2183                    }
2184                    catch (Exception e) {
2185                            throw new SystemException(e);
2186                    }
2187            }
2188    
2189            @BeanReference(type = AssetCategoryLocalService.class)
2190            protected AssetCategoryLocalService assetCategoryLocalService;
2191            @BeanReference(type = AssetCategoryService.class)
2192            protected AssetCategoryService assetCategoryService;
2193            @BeanReference(type = AssetCategoryPersistence.class)
2194            protected AssetCategoryPersistence assetCategoryPersistence;
2195            @BeanReference(type = AssetCategoryFinder.class)
2196            protected AssetCategoryFinder assetCategoryFinder;
2197            @BeanReference(type = AssetCategoryPropertyLocalService.class)
2198            protected AssetCategoryPropertyLocalService assetCategoryPropertyLocalService;
2199            @BeanReference(type = AssetCategoryPropertyService.class)
2200            protected AssetCategoryPropertyService assetCategoryPropertyService;
2201            @BeanReference(type = AssetCategoryPropertyPersistence.class)
2202            protected AssetCategoryPropertyPersistence assetCategoryPropertyPersistence;
2203            @BeanReference(type = AssetCategoryPropertyFinder.class)
2204            protected AssetCategoryPropertyFinder assetCategoryPropertyFinder;
2205            @BeanReference(type = AssetEntryLocalService.class)
2206            protected AssetEntryLocalService assetEntryLocalService;
2207            @BeanReference(type = AssetEntryService.class)
2208            protected AssetEntryService assetEntryService;
2209            @BeanReference(type = AssetEntryPersistence.class)
2210            protected AssetEntryPersistence assetEntryPersistence;
2211            @BeanReference(type = AssetEntryFinder.class)
2212            protected AssetEntryFinder assetEntryFinder;
2213            @BeanReference(type = AssetLinkLocalService.class)
2214            protected AssetLinkLocalService assetLinkLocalService;
2215            @BeanReference(type = AssetLinkPersistence.class)
2216            protected AssetLinkPersistence assetLinkPersistence;
2217            @BeanReference(type = AssetLinkFinder.class)
2218            protected AssetLinkFinder assetLinkFinder;
2219            @BeanReference(type = AssetTagLocalService.class)
2220            protected AssetTagLocalService assetTagLocalService;
2221            @BeanReference(type = AssetTagService.class)
2222            protected AssetTagService assetTagService;
2223            @BeanReference(type = AssetTagPersistence.class)
2224            protected AssetTagPersistence assetTagPersistence;
2225            @BeanReference(type = AssetTagFinder.class)
2226            protected AssetTagFinder assetTagFinder;
2227            @BeanReference(type = AssetTagPropertyLocalService.class)
2228            protected AssetTagPropertyLocalService assetTagPropertyLocalService;
2229            @BeanReference(type = AssetTagPropertyService.class)
2230            protected AssetTagPropertyService assetTagPropertyService;
2231            @BeanReference(type = AssetTagPropertyPersistence.class)
2232            protected AssetTagPropertyPersistence assetTagPropertyPersistence;
2233            @BeanReference(type = AssetTagPropertyFinder.class)
2234            protected AssetTagPropertyFinder assetTagPropertyFinder;
2235            @BeanReference(type = AssetTagPropertyKeyFinder.class)
2236            protected AssetTagPropertyKeyFinder assetTagPropertyKeyFinder;
2237            @BeanReference(type = AssetTagStatsLocalService.class)
2238            protected AssetTagStatsLocalService assetTagStatsLocalService;
2239            @BeanReference(type = AssetTagStatsPersistence.class)
2240            protected AssetTagStatsPersistence assetTagStatsPersistence;
2241            @BeanReference(type = AssetVocabularyLocalService.class)
2242            protected AssetVocabularyLocalService assetVocabularyLocalService;
2243            @BeanReference(type = AssetVocabularyService.class)
2244            protected AssetVocabularyService assetVocabularyService;
2245            @BeanReference(type = AssetVocabularyPersistence.class)
2246            protected AssetVocabularyPersistence assetVocabularyPersistence;
2247            @BeanReference(type = AssetVocabularyFinder.class)
2248            protected AssetVocabularyFinder assetVocabularyFinder;
2249            @BeanReference(type = CounterLocalService.class)
2250            protected CounterLocalService counterLocalService;
2251            @BeanReference(type = CompanyLocalService.class)
2252            protected CompanyLocalService companyLocalService;
2253            @BeanReference(type = CompanyService.class)
2254            protected CompanyService companyService;
2255            @BeanReference(type = CompanyPersistence.class)
2256            protected CompanyPersistence companyPersistence;
2257            @BeanReference(type = GroupLocalService.class)
2258            protected GroupLocalService groupLocalService;
2259            @BeanReference(type = GroupService.class)
2260            protected GroupService groupService;
2261            @BeanReference(type = GroupPersistence.class)
2262            protected GroupPersistence groupPersistence;
2263            @BeanReference(type = GroupFinder.class)
2264            protected GroupFinder groupFinder;
2265            @BeanReference(type = ResourceLocalService.class)
2266            protected ResourceLocalService resourceLocalService;
2267            @BeanReference(type = UserLocalService.class)
2268            protected UserLocalService userLocalService;
2269            @BeanReference(type = UserService.class)
2270            protected UserService userService;
2271            @BeanReference(type = UserPersistence.class)
2272            protected UserPersistence userPersistence;
2273            @BeanReference(type = UserFinder.class)
2274            protected UserFinder userFinder;
2275            @BeanReference(type = BlogsEntryLocalService.class)
2276            protected BlogsEntryLocalService blogsEntryLocalService;
2277            @BeanReference(type = BlogsEntryService.class)
2278            protected BlogsEntryService blogsEntryService;
2279            @BeanReference(type = BlogsEntryPersistence.class)
2280            protected BlogsEntryPersistence blogsEntryPersistence;
2281            @BeanReference(type = BlogsEntryFinder.class)
2282            protected BlogsEntryFinder blogsEntryFinder;
2283            @BeanReference(type = BookmarksEntryLocalService.class)
2284            protected BookmarksEntryLocalService bookmarksEntryLocalService;
2285            @BeanReference(type = BookmarksEntryService.class)
2286            protected BookmarksEntryService bookmarksEntryService;
2287            @BeanReference(type = BookmarksEntryPersistence.class)
2288            protected BookmarksEntryPersistence bookmarksEntryPersistence;
2289            @BeanReference(type = BookmarksEntryFinder.class)
2290            protected BookmarksEntryFinder bookmarksEntryFinder;
2291            @BeanReference(type = DLAppLocalService.class)
2292            protected DLAppLocalService dlAppLocalService;
2293            @BeanReference(type = DLAppService.class)
2294            protected DLAppService dlAppService;
2295            @BeanReference(type = DLFileEntryLocalService.class)
2296            protected DLFileEntryLocalService dlFileEntryLocalService;
2297            @BeanReference(type = DLFileEntryService.class)
2298            protected DLFileEntryService dlFileEntryService;
2299            @BeanReference(type = DLFileEntryPersistence.class)
2300            protected DLFileEntryPersistence dlFileEntryPersistence;
2301            @BeanReference(type = DLFileEntryFinder.class)
2302            protected DLFileEntryFinder dlFileEntryFinder;
2303            @BeanReference(type = DLFolderLocalService.class)
2304            protected DLFolderLocalService dlFolderLocalService;
2305            @BeanReference(type = DLFolderService.class)
2306            protected DLFolderService dlFolderService;
2307            @BeanReference(type = DLFolderPersistence.class)
2308            protected DLFolderPersistence dlFolderPersistence;
2309            @BeanReference(type = DLFolderFinder.class)
2310            protected DLFolderFinder dlFolderFinder;
2311            @BeanReference(type = JournalArticleLocalService.class)
2312            protected JournalArticleLocalService journalArticleLocalService;
2313            @BeanReference(type = JournalArticleService.class)
2314            protected JournalArticleService journalArticleService;
2315            @BeanReference(type = JournalArticlePersistence.class)
2316            protected JournalArticlePersistence journalArticlePersistence;
2317            @BeanReference(type = JournalArticleFinder.class)
2318            protected JournalArticleFinder journalArticleFinder;
2319            @BeanReference(type = JournalArticleResourceLocalService.class)
2320            protected JournalArticleResourceLocalService journalArticleResourceLocalService;
2321            @BeanReference(type = JournalArticleResourcePersistence.class)
2322            protected JournalArticleResourcePersistence journalArticleResourcePersistence;
2323            @BeanReference(type = MBMessageLocalService.class)
2324            protected MBMessageLocalService mbMessageLocalService;
2325            @BeanReference(type = MBMessageService.class)
2326            protected MBMessageService mbMessageService;
2327            @BeanReference(type = MBMessagePersistence.class)
2328            protected MBMessagePersistence mbMessagePersistence;
2329            @BeanReference(type = MBMessageFinder.class)
2330            protected MBMessageFinder mbMessageFinder;
2331            @BeanReference(type = SocialActivityLocalService.class)
2332            protected SocialActivityLocalService socialActivityLocalService;
2333            @BeanReference(type = SocialActivityPersistence.class)
2334            protected SocialActivityPersistence socialActivityPersistence;
2335            @BeanReference(type = SocialActivityFinder.class)
2336            protected SocialActivityFinder socialActivityFinder;
2337            @BeanReference(type = SocialActivityCounterLocalService.class)
2338            protected SocialActivityCounterLocalService socialActivityCounterLocalService;
2339            @BeanReference(type = SocialActivityCounterPersistence.class)
2340            protected SocialActivityCounterPersistence socialActivityCounterPersistence;
2341            @BeanReference(type = SocialActivityCounterFinder.class)
2342            protected SocialActivityCounterFinder socialActivityCounterFinder;
2343            @BeanReference(type = WikiPageLocalService.class)
2344            protected WikiPageLocalService wikiPageLocalService;
2345            @BeanReference(type = WikiPageService.class)
2346            protected WikiPageService wikiPageService;
2347            @BeanReference(type = WikiPagePersistence.class)
2348            protected WikiPagePersistence wikiPagePersistence;
2349            @BeanReference(type = WikiPageFinder.class)
2350            protected WikiPageFinder wikiPageFinder;
2351            @BeanReference(type = WikiPageResourceLocalService.class)
2352            protected WikiPageResourceLocalService wikiPageResourceLocalService;
2353            @BeanReference(type = WikiPageResourcePersistence.class)
2354            protected WikiPageResourcePersistence wikiPageResourcePersistence;
2355            @BeanReference(type = PersistedModelLocalServiceRegistry.class)
2356            protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
2357            private String _beanIdentifier;
2358    }