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.portal.kernel.bean.BeanReference;
018    import com.liferay.portal.kernel.bean.IdentifiableBean;
019    import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
020    import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
021    import com.liferay.portal.kernel.exception.SystemException;
022    import com.liferay.portal.service.BaseServiceImpl;
023    import com.liferay.portal.service.persistence.UserFinder;
024    import com.liferay.portal.service.persistence.UserPersistence;
025    
026    import com.liferay.portlet.asset.model.AssetTagProperty;
027    import com.liferay.portlet.asset.service.AssetTagPropertyService;
028    import com.liferay.portlet.asset.service.persistence.AssetCategoryFinder;
029    import com.liferay.portlet.asset.service.persistence.AssetCategoryPersistence;
030    import com.liferay.portlet.asset.service.persistence.AssetCategoryPropertyFinder;
031    import com.liferay.portlet.asset.service.persistence.AssetCategoryPropertyPersistence;
032    import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
033    import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
034    import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
035    import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
036    import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
037    import com.liferay.portlet.asset.service.persistence.AssetTagPropertyFinder;
038    import com.liferay.portlet.asset.service.persistence.AssetTagPropertyKeyFinder;
039    import com.liferay.portlet.asset.service.persistence.AssetTagPropertyPersistence;
040    import com.liferay.portlet.asset.service.persistence.AssetTagStatsPersistence;
041    import com.liferay.portlet.asset.service.persistence.AssetVocabularyFinder;
042    import com.liferay.portlet.asset.service.persistence.AssetVocabularyPersistence;
043    
044    import javax.sql.DataSource;
045    
046    /**
047     * Provides the base implementation for the asset tag property remote service.
048     *
049     * <p>
050     * 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.AssetTagPropertyServiceImpl}.
051     * </p>
052     *
053     * @author Brian Wing Shun Chan
054     * @see com.liferay.portlet.asset.service.impl.AssetTagPropertyServiceImpl
055     * @see com.liferay.portlet.asset.service.AssetTagPropertyServiceUtil
056     * @generated
057     */
058    public abstract class AssetTagPropertyServiceBaseImpl extends BaseServiceImpl
059            implements AssetTagPropertyService, IdentifiableBean {
060            /*
061             * NOTE FOR DEVELOPERS:
062             *
063             * Never modify or reference this class directly. Always use {@link com.liferay.portlet.asset.service.AssetTagPropertyServiceUtil} to access the asset tag property remote service.
064             */
065    
066            /**
067             * Returns the asset category local service.
068             *
069             * @return the asset category local service
070             */
071            public com.liferay.portlet.asset.service.AssetCategoryLocalService getAssetCategoryLocalService() {
072                    return assetCategoryLocalService;
073            }
074    
075            /**
076             * Sets the asset category local service.
077             *
078             * @param assetCategoryLocalService the asset category local service
079             */
080            public void setAssetCategoryLocalService(
081                    com.liferay.portlet.asset.service.AssetCategoryLocalService assetCategoryLocalService) {
082                    this.assetCategoryLocalService = assetCategoryLocalService;
083            }
084    
085            /**
086             * Returns the asset category remote service.
087             *
088             * @return the asset category remote service
089             */
090            public com.liferay.portlet.asset.service.AssetCategoryService getAssetCategoryService() {
091                    return assetCategoryService;
092            }
093    
094            /**
095             * Sets the asset category remote service.
096             *
097             * @param assetCategoryService the asset category remote service
098             */
099            public void setAssetCategoryService(
100                    com.liferay.portlet.asset.service.AssetCategoryService assetCategoryService) {
101                    this.assetCategoryService = assetCategoryService;
102            }
103    
104            /**
105             * Returns the asset category persistence.
106             *
107             * @return the asset category persistence
108             */
109            public AssetCategoryPersistence getAssetCategoryPersistence() {
110                    return assetCategoryPersistence;
111            }
112    
113            /**
114             * Sets the asset category persistence.
115             *
116             * @param assetCategoryPersistence the asset category persistence
117             */
118            public void setAssetCategoryPersistence(
119                    AssetCategoryPersistence assetCategoryPersistence) {
120                    this.assetCategoryPersistence = assetCategoryPersistence;
121            }
122    
123            /**
124             * Returns the asset category finder.
125             *
126             * @return the asset category finder
127             */
128            public AssetCategoryFinder getAssetCategoryFinder() {
129                    return assetCategoryFinder;
130            }
131    
132            /**
133             * Sets the asset category finder.
134             *
135             * @param assetCategoryFinder the asset category finder
136             */
137            public void setAssetCategoryFinder(AssetCategoryFinder assetCategoryFinder) {
138                    this.assetCategoryFinder = assetCategoryFinder;
139            }
140    
141            /**
142             * Returns the asset category property local service.
143             *
144             * @return the asset category property local service
145             */
146            public com.liferay.portlet.asset.service.AssetCategoryPropertyLocalService getAssetCategoryPropertyLocalService() {
147                    return assetCategoryPropertyLocalService;
148            }
149    
150            /**
151             * Sets the asset category property local service.
152             *
153             * @param assetCategoryPropertyLocalService the asset category property local service
154             */
155            public void setAssetCategoryPropertyLocalService(
156                    com.liferay.portlet.asset.service.AssetCategoryPropertyLocalService assetCategoryPropertyLocalService) {
157                    this.assetCategoryPropertyLocalService = assetCategoryPropertyLocalService;
158            }
159    
160            /**
161             * Returns the asset category property remote service.
162             *
163             * @return the asset category property remote service
164             */
165            public com.liferay.portlet.asset.service.AssetCategoryPropertyService getAssetCategoryPropertyService() {
166                    return assetCategoryPropertyService;
167            }
168    
169            /**
170             * Sets the asset category property remote service.
171             *
172             * @param assetCategoryPropertyService the asset category property remote service
173             */
174            public void setAssetCategoryPropertyService(
175                    com.liferay.portlet.asset.service.AssetCategoryPropertyService assetCategoryPropertyService) {
176                    this.assetCategoryPropertyService = assetCategoryPropertyService;
177            }
178    
179            /**
180             * Returns the asset category property persistence.
181             *
182             * @return the asset category property persistence
183             */
184            public AssetCategoryPropertyPersistence getAssetCategoryPropertyPersistence() {
185                    return assetCategoryPropertyPersistence;
186            }
187    
188            /**
189             * Sets the asset category property persistence.
190             *
191             * @param assetCategoryPropertyPersistence the asset category property persistence
192             */
193            public void setAssetCategoryPropertyPersistence(
194                    AssetCategoryPropertyPersistence assetCategoryPropertyPersistence) {
195                    this.assetCategoryPropertyPersistence = assetCategoryPropertyPersistence;
196            }
197    
198            /**
199             * Returns the asset category property finder.
200             *
201             * @return the asset category property finder
202             */
203            public AssetCategoryPropertyFinder getAssetCategoryPropertyFinder() {
204                    return assetCategoryPropertyFinder;
205            }
206    
207            /**
208             * Sets the asset category property finder.
209             *
210             * @param assetCategoryPropertyFinder the asset category property finder
211             */
212            public void setAssetCategoryPropertyFinder(
213                    AssetCategoryPropertyFinder assetCategoryPropertyFinder) {
214                    this.assetCategoryPropertyFinder = assetCategoryPropertyFinder;
215            }
216    
217            /**
218             * Returns the asset entry local service.
219             *
220             * @return the asset entry local service
221             */
222            public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
223                    return assetEntryLocalService;
224            }
225    
226            /**
227             * Sets the asset entry local service.
228             *
229             * @param assetEntryLocalService the asset entry local service
230             */
231            public void setAssetEntryLocalService(
232                    com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
233                    this.assetEntryLocalService = assetEntryLocalService;
234            }
235    
236            /**
237             * Returns the asset entry remote service.
238             *
239             * @return the asset entry remote service
240             */
241            public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
242                    return assetEntryService;
243            }
244    
245            /**
246             * Sets the asset entry remote service.
247             *
248             * @param assetEntryService the asset entry remote service
249             */
250            public void setAssetEntryService(
251                    com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
252                    this.assetEntryService = assetEntryService;
253            }
254    
255            /**
256             * Returns the asset entry persistence.
257             *
258             * @return the asset entry persistence
259             */
260            public AssetEntryPersistence getAssetEntryPersistence() {
261                    return assetEntryPersistence;
262            }
263    
264            /**
265             * Sets the asset entry persistence.
266             *
267             * @param assetEntryPersistence the asset entry persistence
268             */
269            public void setAssetEntryPersistence(
270                    AssetEntryPersistence assetEntryPersistence) {
271                    this.assetEntryPersistence = assetEntryPersistence;
272            }
273    
274            /**
275             * Returns the asset entry finder.
276             *
277             * @return the asset entry finder
278             */
279            public AssetEntryFinder getAssetEntryFinder() {
280                    return assetEntryFinder;
281            }
282    
283            /**
284             * Sets the asset entry finder.
285             *
286             * @param assetEntryFinder the asset entry finder
287             */
288            public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
289                    this.assetEntryFinder = assetEntryFinder;
290            }
291    
292            /**
293             * Returns the asset link local service.
294             *
295             * @return the asset link local service
296             */
297            public com.liferay.portlet.asset.service.AssetLinkLocalService getAssetLinkLocalService() {
298                    return assetLinkLocalService;
299            }
300    
301            /**
302             * Sets the asset link local service.
303             *
304             * @param assetLinkLocalService the asset link local service
305             */
306            public void setAssetLinkLocalService(
307                    com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService) {
308                    this.assetLinkLocalService = assetLinkLocalService;
309            }
310    
311            /**
312             * Returns the asset link persistence.
313             *
314             * @return the asset link persistence
315             */
316            public AssetLinkPersistence getAssetLinkPersistence() {
317                    return assetLinkPersistence;
318            }
319    
320            /**
321             * Sets the asset link persistence.
322             *
323             * @param assetLinkPersistence the asset link persistence
324             */
325            public void setAssetLinkPersistence(
326                    AssetLinkPersistence assetLinkPersistence) {
327                    this.assetLinkPersistence = assetLinkPersistence;
328            }
329    
330            /**
331             * Returns the asset tag local service.
332             *
333             * @return the asset tag local service
334             */
335            public com.liferay.portlet.asset.service.AssetTagLocalService getAssetTagLocalService() {
336                    return assetTagLocalService;
337            }
338    
339            /**
340             * Sets the asset tag local service.
341             *
342             * @param assetTagLocalService the asset tag local service
343             */
344            public void setAssetTagLocalService(
345                    com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService) {
346                    this.assetTagLocalService = assetTagLocalService;
347            }
348    
349            /**
350             * Returns the asset tag remote service.
351             *
352             * @return the asset tag remote service
353             */
354            public com.liferay.portlet.asset.service.AssetTagService getAssetTagService() {
355                    return assetTagService;
356            }
357    
358            /**
359             * Sets the asset tag remote service.
360             *
361             * @param assetTagService the asset tag remote service
362             */
363            public void setAssetTagService(
364                    com.liferay.portlet.asset.service.AssetTagService assetTagService) {
365                    this.assetTagService = assetTagService;
366            }
367    
368            /**
369             * Returns the asset tag persistence.
370             *
371             * @return the asset tag persistence
372             */
373            public AssetTagPersistence getAssetTagPersistence() {
374                    return assetTagPersistence;
375            }
376    
377            /**
378             * Sets the asset tag persistence.
379             *
380             * @param assetTagPersistence the asset tag persistence
381             */
382            public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
383                    this.assetTagPersistence = assetTagPersistence;
384            }
385    
386            /**
387             * Returns the asset tag finder.
388             *
389             * @return the asset tag finder
390             */
391            public AssetTagFinder getAssetTagFinder() {
392                    return assetTagFinder;
393            }
394    
395            /**
396             * Sets the asset tag finder.
397             *
398             * @param assetTagFinder the asset tag finder
399             */
400            public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
401                    this.assetTagFinder = assetTagFinder;
402            }
403    
404            /**
405             * Returns the asset tag property local service.
406             *
407             * @return the asset tag property local service
408             */
409            public com.liferay.portlet.asset.service.AssetTagPropertyLocalService getAssetTagPropertyLocalService() {
410                    return assetTagPropertyLocalService;
411            }
412    
413            /**
414             * Sets the asset tag property local service.
415             *
416             * @param assetTagPropertyLocalService the asset tag property local service
417             */
418            public void setAssetTagPropertyLocalService(
419                    com.liferay.portlet.asset.service.AssetTagPropertyLocalService assetTagPropertyLocalService) {
420                    this.assetTagPropertyLocalService = assetTagPropertyLocalService;
421            }
422    
423            /**
424             * Returns the asset tag property remote service.
425             *
426             * @return the asset tag property remote service
427             */
428            public com.liferay.portlet.asset.service.AssetTagPropertyService getAssetTagPropertyService() {
429                    return assetTagPropertyService;
430            }
431    
432            /**
433             * Sets the asset tag property remote service.
434             *
435             * @param assetTagPropertyService the asset tag property remote service
436             */
437            public void setAssetTagPropertyService(
438                    com.liferay.portlet.asset.service.AssetTagPropertyService assetTagPropertyService) {
439                    this.assetTagPropertyService = assetTagPropertyService;
440            }
441    
442            /**
443             * Returns the asset tag property persistence.
444             *
445             * @return the asset tag property persistence
446             */
447            public AssetTagPropertyPersistence getAssetTagPropertyPersistence() {
448                    return assetTagPropertyPersistence;
449            }
450    
451            /**
452             * Sets the asset tag property persistence.
453             *
454             * @param assetTagPropertyPersistence the asset tag property persistence
455             */
456            public void setAssetTagPropertyPersistence(
457                    AssetTagPropertyPersistence assetTagPropertyPersistence) {
458                    this.assetTagPropertyPersistence = assetTagPropertyPersistence;
459            }
460    
461            /**
462             * Returns the asset tag property finder.
463             *
464             * @return the asset tag property finder
465             */
466            public AssetTagPropertyFinder getAssetTagPropertyFinder() {
467                    return assetTagPropertyFinder;
468            }
469    
470            /**
471             * Sets the asset tag property finder.
472             *
473             * @param assetTagPropertyFinder the asset tag property finder
474             */
475            public void setAssetTagPropertyFinder(
476                    AssetTagPropertyFinder assetTagPropertyFinder) {
477                    this.assetTagPropertyFinder = assetTagPropertyFinder;
478            }
479    
480            /**
481             * Returns the asset tag property key finder.
482             *
483             * @return the asset tag property key finder
484             */
485            public AssetTagPropertyKeyFinder getAssetTagPropertyKeyFinder() {
486                    return assetTagPropertyKeyFinder;
487            }
488    
489            /**
490             * Sets the asset tag property key finder.
491             *
492             * @param assetTagPropertyKeyFinder the asset tag property key finder
493             */
494            public void setAssetTagPropertyKeyFinder(
495                    AssetTagPropertyKeyFinder assetTagPropertyKeyFinder) {
496                    this.assetTagPropertyKeyFinder = assetTagPropertyKeyFinder;
497            }
498    
499            /**
500             * Returns the asset tag stats local service.
501             *
502             * @return the asset tag stats local service
503             */
504            public com.liferay.portlet.asset.service.AssetTagStatsLocalService getAssetTagStatsLocalService() {
505                    return assetTagStatsLocalService;
506            }
507    
508            /**
509             * Sets the asset tag stats local service.
510             *
511             * @param assetTagStatsLocalService the asset tag stats local service
512             */
513            public void setAssetTagStatsLocalService(
514                    com.liferay.portlet.asset.service.AssetTagStatsLocalService assetTagStatsLocalService) {
515                    this.assetTagStatsLocalService = assetTagStatsLocalService;
516            }
517    
518            /**
519             * Returns the asset tag stats persistence.
520             *
521             * @return the asset tag stats persistence
522             */
523            public AssetTagStatsPersistence getAssetTagStatsPersistence() {
524                    return assetTagStatsPersistence;
525            }
526    
527            /**
528             * Sets the asset tag stats persistence.
529             *
530             * @param assetTagStatsPersistence the asset tag stats persistence
531             */
532            public void setAssetTagStatsPersistence(
533                    AssetTagStatsPersistence assetTagStatsPersistence) {
534                    this.assetTagStatsPersistence = assetTagStatsPersistence;
535            }
536    
537            /**
538             * Returns the asset vocabulary local service.
539             *
540             * @return the asset vocabulary local service
541             */
542            public com.liferay.portlet.asset.service.AssetVocabularyLocalService getAssetVocabularyLocalService() {
543                    return assetVocabularyLocalService;
544            }
545    
546            /**
547             * Sets the asset vocabulary local service.
548             *
549             * @param assetVocabularyLocalService the asset vocabulary local service
550             */
551            public void setAssetVocabularyLocalService(
552                    com.liferay.portlet.asset.service.AssetVocabularyLocalService assetVocabularyLocalService) {
553                    this.assetVocabularyLocalService = assetVocabularyLocalService;
554            }
555    
556            /**
557             * Returns the asset vocabulary remote service.
558             *
559             * @return the asset vocabulary remote service
560             */
561            public com.liferay.portlet.asset.service.AssetVocabularyService getAssetVocabularyService() {
562                    return assetVocabularyService;
563            }
564    
565            /**
566             * Sets the asset vocabulary remote service.
567             *
568             * @param assetVocabularyService the asset vocabulary remote service
569             */
570            public void setAssetVocabularyService(
571                    com.liferay.portlet.asset.service.AssetVocabularyService assetVocabularyService) {
572                    this.assetVocabularyService = assetVocabularyService;
573            }
574    
575            /**
576             * Returns the asset vocabulary persistence.
577             *
578             * @return the asset vocabulary persistence
579             */
580            public AssetVocabularyPersistence getAssetVocabularyPersistence() {
581                    return assetVocabularyPersistence;
582            }
583    
584            /**
585             * Sets the asset vocabulary persistence.
586             *
587             * @param assetVocabularyPersistence the asset vocabulary persistence
588             */
589            public void setAssetVocabularyPersistence(
590                    AssetVocabularyPersistence assetVocabularyPersistence) {
591                    this.assetVocabularyPersistence = assetVocabularyPersistence;
592            }
593    
594            /**
595             * Returns the asset vocabulary finder.
596             *
597             * @return the asset vocabulary finder
598             */
599            public AssetVocabularyFinder getAssetVocabularyFinder() {
600                    return assetVocabularyFinder;
601            }
602    
603            /**
604             * Sets the asset vocabulary finder.
605             *
606             * @param assetVocabularyFinder the asset vocabulary finder
607             */
608            public void setAssetVocabularyFinder(
609                    AssetVocabularyFinder assetVocabularyFinder) {
610                    this.assetVocabularyFinder = assetVocabularyFinder;
611            }
612    
613            /**
614             * Returns the counter local service.
615             *
616             * @return the counter local service
617             */
618            public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
619                    return counterLocalService;
620            }
621    
622            /**
623             * Sets the counter local service.
624             *
625             * @param counterLocalService the counter local service
626             */
627            public void setCounterLocalService(
628                    com.liferay.counter.service.CounterLocalService counterLocalService) {
629                    this.counterLocalService = counterLocalService;
630            }
631    
632            /**
633             * Returns the resource local service.
634             *
635             * @return the resource local service
636             */
637            public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
638                    return resourceLocalService;
639            }
640    
641            /**
642             * Sets the resource local service.
643             *
644             * @param resourceLocalService the resource local service
645             */
646            public void setResourceLocalService(
647                    com.liferay.portal.service.ResourceLocalService resourceLocalService) {
648                    this.resourceLocalService = resourceLocalService;
649            }
650    
651            /**
652             * Returns the user local service.
653             *
654             * @return the user local service
655             */
656            public com.liferay.portal.service.UserLocalService getUserLocalService() {
657                    return userLocalService;
658            }
659    
660            /**
661             * Sets the user local service.
662             *
663             * @param userLocalService the user local service
664             */
665            public void setUserLocalService(
666                    com.liferay.portal.service.UserLocalService userLocalService) {
667                    this.userLocalService = userLocalService;
668            }
669    
670            /**
671             * Returns the user remote service.
672             *
673             * @return the user remote service
674             */
675            public com.liferay.portal.service.UserService getUserService() {
676                    return userService;
677            }
678    
679            /**
680             * Sets the user remote service.
681             *
682             * @param userService the user remote service
683             */
684            public void setUserService(
685                    com.liferay.portal.service.UserService userService) {
686                    this.userService = userService;
687            }
688    
689            /**
690             * Returns the user persistence.
691             *
692             * @return the user persistence
693             */
694            public UserPersistence getUserPersistence() {
695                    return userPersistence;
696            }
697    
698            /**
699             * Sets the user persistence.
700             *
701             * @param userPersistence the user persistence
702             */
703            public void setUserPersistence(UserPersistence userPersistence) {
704                    this.userPersistence = userPersistence;
705            }
706    
707            /**
708             * Returns the user finder.
709             *
710             * @return the user finder
711             */
712            public UserFinder getUserFinder() {
713                    return userFinder;
714            }
715    
716            /**
717             * Sets the user finder.
718             *
719             * @param userFinder the user finder
720             */
721            public void setUserFinder(UserFinder userFinder) {
722                    this.userFinder = userFinder;
723            }
724    
725            public void afterPropertiesSet() {
726            }
727    
728            public void destroy() {
729            }
730    
731            /**
732             * Returns the Spring bean ID for this bean.
733             *
734             * @return the Spring bean ID for this bean
735             */
736            @Override
737            public String getBeanIdentifier() {
738                    return _beanIdentifier;
739            }
740    
741            /**
742             * Sets the Spring bean ID for this bean.
743             *
744             * @param beanIdentifier the Spring bean ID for this bean
745             */
746            @Override
747            public void setBeanIdentifier(String beanIdentifier) {
748                    _beanIdentifier = beanIdentifier;
749            }
750    
751            protected Class<?> getModelClass() {
752                    return AssetTagProperty.class;
753            }
754    
755            protected String getModelClassName() {
756                    return AssetTagProperty.class.getName();
757            }
758    
759            /**
760             * Performs an SQL query.
761             *
762             * @param sql the sql query
763             */
764            protected void runSQL(String sql) throws SystemException {
765                    try {
766                            DataSource dataSource = assetTagPropertyPersistence.getDataSource();
767    
768                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
769                                            sql, new int[0]);
770    
771                            sqlUpdate.update();
772                    }
773                    catch (Exception e) {
774                            throw new SystemException(e);
775                    }
776            }
777    
778            @BeanReference(type = com.liferay.portlet.asset.service.AssetCategoryLocalService.class)
779            protected com.liferay.portlet.asset.service.AssetCategoryLocalService assetCategoryLocalService;
780            @BeanReference(type = com.liferay.portlet.asset.service.AssetCategoryService.class)
781            protected com.liferay.portlet.asset.service.AssetCategoryService assetCategoryService;
782            @BeanReference(type = AssetCategoryPersistence.class)
783            protected AssetCategoryPersistence assetCategoryPersistence;
784            @BeanReference(type = AssetCategoryFinder.class)
785            protected AssetCategoryFinder assetCategoryFinder;
786            @BeanReference(type = com.liferay.portlet.asset.service.AssetCategoryPropertyLocalService.class)
787            protected com.liferay.portlet.asset.service.AssetCategoryPropertyLocalService assetCategoryPropertyLocalService;
788            @BeanReference(type = com.liferay.portlet.asset.service.AssetCategoryPropertyService.class)
789            protected com.liferay.portlet.asset.service.AssetCategoryPropertyService assetCategoryPropertyService;
790            @BeanReference(type = AssetCategoryPropertyPersistence.class)
791            protected AssetCategoryPropertyPersistence assetCategoryPropertyPersistence;
792            @BeanReference(type = AssetCategoryPropertyFinder.class)
793            protected AssetCategoryPropertyFinder assetCategoryPropertyFinder;
794            @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
795            protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
796            @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
797            protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
798            @BeanReference(type = AssetEntryPersistence.class)
799            protected AssetEntryPersistence assetEntryPersistence;
800            @BeanReference(type = AssetEntryFinder.class)
801            protected AssetEntryFinder assetEntryFinder;
802            @BeanReference(type = com.liferay.portlet.asset.service.AssetLinkLocalService.class)
803            protected com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService;
804            @BeanReference(type = AssetLinkPersistence.class)
805            protected AssetLinkPersistence assetLinkPersistence;
806            @BeanReference(type = com.liferay.portlet.asset.service.AssetTagLocalService.class)
807            protected com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService;
808            @BeanReference(type = com.liferay.portlet.asset.service.AssetTagService.class)
809            protected com.liferay.portlet.asset.service.AssetTagService assetTagService;
810            @BeanReference(type = AssetTagPersistence.class)
811            protected AssetTagPersistence assetTagPersistence;
812            @BeanReference(type = AssetTagFinder.class)
813            protected AssetTagFinder assetTagFinder;
814            @BeanReference(type = com.liferay.portlet.asset.service.AssetTagPropertyLocalService.class)
815            protected com.liferay.portlet.asset.service.AssetTagPropertyLocalService assetTagPropertyLocalService;
816            @BeanReference(type = com.liferay.portlet.asset.service.AssetTagPropertyService.class)
817            protected com.liferay.portlet.asset.service.AssetTagPropertyService assetTagPropertyService;
818            @BeanReference(type = AssetTagPropertyPersistence.class)
819            protected AssetTagPropertyPersistence assetTagPropertyPersistence;
820            @BeanReference(type = AssetTagPropertyFinder.class)
821            protected AssetTagPropertyFinder assetTagPropertyFinder;
822            @BeanReference(type = AssetTagPropertyKeyFinder.class)
823            protected AssetTagPropertyKeyFinder assetTagPropertyKeyFinder;
824            @BeanReference(type = com.liferay.portlet.asset.service.AssetTagStatsLocalService.class)
825            protected com.liferay.portlet.asset.service.AssetTagStatsLocalService assetTagStatsLocalService;
826            @BeanReference(type = AssetTagStatsPersistence.class)
827            protected AssetTagStatsPersistence assetTagStatsPersistence;
828            @BeanReference(type = com.liferay.portlet.asset.service.AssetVocabularyLocalService.class)
829            protected com.liferay.portlet.asset.service.AssetVocabularyLocalService assetVocabularyLocalService;
830            @BeanReference(type = com.liferay.portlet.asset.service.AssetVocabularyService.class)
831            protected com.liferay.portlet.asset.service.AssetVocabularyService assetVocabularyService;
832            @BeanReference(type = AssetVocabularyPersistence.class)
833            protected AssetVocabularyPersistence assetVocabularyPersistence;
834            @BeanReference(type = AssetVocabularyFinder.class)
835            protected AssetVocabularyFinder assetVocabularyFinder;
836            @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
837            protected com.liferay.counter.service.CounterLocalService counterLocalService;
838            @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
839            protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
840            @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
841            protected com.liferay.portal.service.UserLocalService userLocalService;
842            @BeanReference(type = com.liferay.portal.service.UserService.class)
843            protected com.liferay.portal.service.UserService userService;
844            @BeanReference(type = UserPersistence.class)
845            protected UserPersistence userPersistence;
846            @BeanReference(type = UserFinder.class)
847            protected UserFinder userFinder;
848            private String _beanIdentifier;
849    }