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.shopping.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.ImagePersistence;
024    import com.liferay.portal.service.persistence.UserFinder;
025    import com.liferay.portal.service.persistence.UserPersistence;
026    
027    import com.liferay.portlet.shopping.model.ShoppingItem;
028    import com.liferay.portlet.shopping.service.ShoppingItemService;
029    import com.liferay.portlet.shopping.service.persistence.ShoppingCartPersistence;
030    import com.liferay.portlet.shopping.service.persistence.ShoppingCategoryPersistence;
031    import com.liferay.portlet.shopping.service.persistence.ShoppingCouponFinder;
032    import com.liferay.portlet.shopping.service.persistence.ShoppingCouponPersistence;
033    import com.liferay.portlet.shopping.service.persistence.ShoppingItemFieldPersistence;
034    import com.liferay.portlet.shopping.service.persistence.ShoppingItemFinder;
035    import com.liferay.portlet.shopping.service.persistence.ShoppingItemPersistence;
036    import com.liferay.portlet.shopping.service.persistence.ShoppingItemPricePersistence;
037    import com.liferay.portlet.shopping.service.persistence.ShoppingOrderFinder;
038    import com.liferay.portlet.shopping.service.persistence.ShoppingOrderItemPersistence;
039    import com.liferay.portlet.shopping.service.persistence.ShoppingOrderPersistence;
040    
041    import javax.sql.DataSource;
042    
043    /**
044     * Provides the base implementation for the shopping item remote service.
045     *
046     * <p>
047     * 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.shopping.service.impl.ShoppingItemServiceImpl}.
048     * </p>
049     *
050     * @author Brian Wing Shun Chan
051     * @see com.liferay.portlet.shopping.service.impl.ShoppingItemServiceImpl
052     * @see com.liferay.portlet.shopping.service.ShoppingItemServiceUtil
053     * @generated
054     */
055    public abstract class ShoppingItemServiceBaseImpl extends BaseServiceImpl
056            implements ShoppingItemService, IdentifiableBean {
057            /*
058             * NOTE FOR DEVELOPERS:
059             *
060             * Never modify or reference this class directly. Always use {@link com.liferay.portlet.shopping.service.ShoppingItemServiceUtil} to access the shopping item remote service.
061             */
062    
063            /**
064             * Returns the shopping cart local service.
065             *
066             * @return the shopping cart local service
067             */
068            public com.liferay.portlet.shopping.service.ShoppingCartLocalService getShoppingCartLocalService() {
069                    return shoppingCartLocalService;
070            }
071    
072            /**
073             * Sets the shopping cart local service.
074             *
075             * @param shoppingCartLocalService the shopping cart local service
076             */
077            public void setShoppingCartLocalService(
078                    com.liferay.portlet.shopping.service.ShoppingCartLocalService shoppingCartLocalService) {
079                    this.shoppingCartLocalService = shoppingCartLocalService;
080            }
081    
082            /**
083             * Returns the shopping cart persistence.
084             *
085             * @return the shopping cart persistence
086             */
087            public ShoppingCartPersistence getShoppingCartPersistence() {
088                    return shoppingCartPersistence;
089            }
090    
091            /**
092             * Sets the shopping cart persistence.
093             *
094             * @param shoppingCartPersistence the shopping cart persistence
095             */
096            public void setShoppingCartPersistence(
097                    ShoppingCartPersistence shoppingCartPersistence) {
098                    this.shoppingCartPersistence = shoppingCartPersistence;
099            }
100    
101            /**
102             * Returns the shopping category local service.
103             *
104             * @return the shopping category local service
105             */
106            public com.liferay.portlet.shopping.service.ShoppingCategoryLocalService getShoppingCategoryLocalService() {
107                    return shoppingCategoryLocalService;
108            }
109    
110            /**
111             * Sets the shopping category local service.
112             *
113             * @param shoppingCategoryLocalService the shopping category local service
114             */
115            public void setShoppingCategoryLocalService(
116                    com.liferay.portlet.shopping.service.ShoppingCategoryLocalService shoppingCategoryLocalService) {
117                    this.shoppingCategoryLocalService = shoppingCategoryLocalService;
118            }
119    
120            /**
121             * Returns the shopping category remote service.
122             *
123             * @return the shopping category remote service
124             */
125            public com.liferay.portlet.shopping.service.ShoppingCategoryService getShoppingCategoryService() {
126                    return shoppingCategoryService;
127            }
128    
129            /**
130             * Sets the shopping category remote service.
131             *
132             * @param shoppingCategoryService the shopping category remote service
133             */
134            public void setShoppingCategoryService(
135                    com.liferay.portlet.shopping.service.ShoppingCategoryService shoppingCategoryService) {
136                    this.shoppingCategoryService = shoppingCategoryService;
137            }
138    
139            /**
140             * Returns the shopping category persistence.
141             *
142             * @return the shopping category persistence
143             */
144            public ShoppingCategoryPersistence getShoppingCategoryPersistence() {
145                    return shoppingCategoryPersistence;
146            }
147    
148            /**
149             * Sets the shopping category persistence.
150             *
151             * @param shoppingCategoryPersistence the shopping category persistence
152             */
153            public void setShoppingCategoryPersistence(
154                    ShoppingCategoryPersistence shoppingCategoryPersistence) {
155                    this.shoppingCategoryPersistence = shoppingCategoryPersistence;
156            }
157    
158            /**
159             * Returns the shopping coupon local service.
160             *
161             * @return the shopping coupon local service
162             */
163            public com.liferay.portlet.shopping.service.ShoppingCouponLocalService getShoppingCouponLocalService() {
164                    return shoppingCouponLocalService;
165            }
166    
167            /**
168             * Sets the shopping coupon local service.
169             *
170             * @param shoppingCouponLocalService the shopping coupon local service
171             */
172            public void setShoppingCouponLocalService(
173                    com.liferay.portlet.shopping.service.ShoppingCouponLocalService shoppingCouponLocalService) {
174                    this.shoppingCouponLocalService = shoppingCouponLocalService;
175            }
176    
177            /**
178             * Returns the shopping coupon remote service.
179             *
180             * @return the shopping coupon remote service
181             */
182            public com.liferay.portlet.shopping.service.ShoppingCouponService getShoppingCouponService() {
183                    return shoppingCouponService;
184            }
185    
186            /**
187             * Sets the shopping coupon remote service.
188             *
189             * @param shoppingCouponService the shopping coupon remote service
190             */
191            public void setShoppingCouponService(
192                    com.liferay.portlet.shopping.service.ShoppingCouponService shoppingCouponService) {
193                    this.shoppingCouponService = shoppingCouponService;
194            }
195    
196            /**
197             * Returns the shopping coupon persistence.
198             *
199             * @return the shopping coupon persistence
200             */
201            public ShoppingCouponPersistence getShoppingCouponPersistence() {
202                    return shoppingCouponPersistence;
203            }
204    
205            /**
206             * Sets the shopping coupon persistence.
207             *
208             * @param shoppingCouponPersistence the shopping coupon persistence
209             */
210            public void setShoppingCouponPersistence(
211                    ShoppingCouponPersistence shoppingCouponPersistence) {
212                    this.shoppingCouponPersistence = shoppingCouponPersistence;
213            }
214    
215            /**
216             * Returns the shopping coupon finder.
217             *
218             * @return the shopping coupon finder
219             */
220            public ShoppingCouponFinder getShoppingCouponFinder() {
221                    return shoppingCouponFinder;
222            }
223    
224            /**
225             * Sets the shopping coupon finder.
226             *
227             * @param shoppingCouponFinder the shopping coupon finder
228             */
229            public void setShoppingCouponFinder(
230                    ShoppingCouponFinder shoppingCouponFinder) {
231                    this.shoppingCouponFinder = shoppingCouponFinder;
232            }
233    
234            /**
235             * Returns the shopping item local service.
236             *
237             * @return the shopping item local service
238             */
239            public com.liferay.portlet.shopping.service.ShoppingItemLocalService getShoppingItemLocalService() {
240                    return shoppingItemLocalService;
241            }
242    
243            /**
244             * Sets the shopping item local service.
245             *
246             * @param shoppingItemLocalService the shopping item local service
247             */
248            public void setShoppingItemLocalService(
249                    com.liferay.portlet.shopping.service.ShoppingItemLocalService shoppingItemLocalService) {
250                    this.shoppingItemLocalService = shoppingItemLocalService;
251            }
252    
253            /**
254             * Returns the shopping item remote service.
255             *
256             * @return the shopping item remote service
257             */
258            public com.liferay.portlet.shopping.service.ShoppingItemService getShoppingItemService() {
259                    return shoppingItemService;
260            }
261    
262            /**
263             * Sets the shopping item remote service.
264             *
265             * @param shoppingItemService the shopping item remote service
266             */
267            public void setShoppingItemService(
268                    com.liferay.portlet.shopping.service.ShoppingItemService shoppingItemService) {
269                    this.shoppingItemService = shoppingItemService;
270            }
271    
272            /**
273             * Returns the shopping item persistence.
274             *
275             * @return the shopping item persistence
276             */
277            public ShoppingItemPersistence getShoppingItemPersistence() {
278                    return shoppingItemPersistence;
279            }
280    
281            /**
282             * Sets the shopping item persistence.
283             *
284             * @param shoppingItemPersistence the shopping item persistence
285             */
286            public void setShoppingItemPersistence(
287                    ShoppingItemPersistence shoppingItemPersistence) {
288                    this.shoppingItemPersistence = shoppingItemPersistence;
289            }
290    
291            /**
292             * Returns the shopping item finder.
293             *
294             * @return the shopping item finder
295             */
296            public ShoppingItemFinder getShoppingItemFinder() {
297                    return shoppingItemFinder;
298            }
299    
300            /**
301             * Sets the shopping item finder.
302             *
303             * @param shoppingItemFinder the shopping item finder
304             */
305            public void setShoppingItemFinder(ShoppingItemFinder shoppingItemFinder) {
306                    this.shoppingItemFinder = shoppingItemFinder;
307            }
308    
309            /**
310             * Returns the shopping item field local service.
311             *
312             * @return the shopping item field local service
313             */
314            public com.liferay.portlet.shopping.service.ShoppingItemFieldLocalService getShoppingItemFieldLocalService() {
315                    return shoppingItemFieldLocalService;
316            }
317    
318            /**
319             * Sets the shopping item field local service.
320             *
321             * @param shoppingItemFieldLocalService the shopping item field local service
322             */
323            public void setShoppingItemFieldLocalService(
324                    com.liferay.portlet.shopping.service.ShoppingItemFieldLocalService shoppingItemFieldLocalService) {
325                    this.shoppingItemFieldLocalService = shoppingItemFieldLocalService;
326            }
327    
328            /**
329             * Returns the shopping item field persistence.
330             *
331             * @return the shopping item field persistence
332             */
333            public ShoppingItemFieldPersistence getShoppingItemFieldPersistence() {
334                    return shoppingItemFieldPersistence;
335            }
336    
337            /**
338             * Sets the shopping item field persistence.
339             *
340             * @param shoppingItemFieldPersistence the shopping item field persistence
341             */
342            public void setShoppingItemFieldPersistence(
343                    ShoppingItemFieldPersistence shoppingItemFieldPersistence) {
344                    this.shoppingItemFieldPersistence = shoppingItemFieldPersistence;
345            }
346    
347            /**
348             * Returns the shopping item price local service.
349             *
350             * @return the shopping item price local service
351             */
352            public com.liferay.portlet.shopping.service.ShoppingItemPriceLocalService getShoppingItemPriceLocalService() {
353                    return shoppingItemPriceLocalService;
354            }
355    
356            /**
357             * Sets the shopping item price local service.
358             *
359             * @param shoppingItemPriceLocalService the shopping item price local service
360             */
361            public void setShoppingItemPriceLocalService(
362                    com.liferay.portlet.shopping.service.ShoppingItemPriceLocalService shoppingItemPriceLocalService) {
363                    this.shoppingItemPriceLocalService = shoppingItemPriceLocalService;
364            }
365    
366            /**
367             * Returns the shopping item price persistence.
368             *
369             * @return the shopping item price persistence
370             */
371            public ShoppingItemPricePersistence getShoppingItemPricePersistence() {
372                    return shoppingItemPricePersistence;
373            }
374    
375            /**
376             * Sets the shopping item price persistence.
377             *
378             * @param shoppingItemPricePersistence the shopping item price persistence
379             */
380            public void setShoppingItemPricePersistence(
381                    ShoppingItemPricePersistence shoppingItemPricePersistence) {
382                    this.shoppingItemPricePersistence = shoppingItemPricePersistence;
383            }
384    
385            /**
386             * Returns the shopping order local service.
387             *
388             * @return the shopping order local service
389             */
390            public com.liferay.portlet.shopping.service.ShoppingOrderLocalService getShoppingOrderLocalService() {
391                    return shoppingOrderLocalService;
392            }
393    
394            /**
395             * Sets the shopping order local service.
396             *
397             * @param shoppingOrderLocalService the shopping order local service
398             */
399            public void setShoppingOrderLocalService(
400                    com.liferay.portlet.shopping.service.ShoppingOrderLocalService shoppingOrderLocalService) {
401                    this.shoppingOrderLocalService = shoppingOrderLocalService;
402            }
403    
404            /**
405             * Returns the shopping order remote service.
406             *
407             * @return the shopping order remote service
408             */
409            public com.liferay.portlet.shopping.service.ShoppingOrderService getShoppingOrderService() {
410                    return shoppingOrderService;
411            }
412    
413            /**
414             * Sets the shopping order remote service.
415             *
416             * @param shoppingOrderService the shopping order remote service
417             */
418            public void setShoppingOrderService(
419                    com.liferay.portlet.shopping.service.ShoppingOrderService shoppingOrderService) {
420                    this.shoppingOrderService = shoppingOrderService;
421            }
422    
423            /**
424             * Returns the shopping order persistence.
425             *
426             * @return the shopping order persistence
427             */
428            public ShoppingOrderPersistence getShoppingOrderPersistence() {
429                    return shoppingOrderPersistence;
430            }
431    
432            /**
433             * Sets the shopping order persistence.
434             *
435             * @param shoppingOrderPersistence the shopping order persistence
436             */
437            public void setShoppingOrderPersistence(
438                    ShoppingOrderPersistence shoppingOrderPersistence) {
439                    this.shoppingOrderPersistence = shoppingOrderPersistence;
440            }
441    
442            /**
443             * Returns the shopping order finder.
444             *
445             * @return the shopping order finder
446             */
447            public ShoppingOrderFinder getShoppingOrderFinder() {
448                    return shoppingOrderFinder;
449            }
450    
451            /**
452             * Sets the shopping order finder.
453             *
454             * @param shoppingOrderFinder the shopping order finder
455             */
456            public void setShoppingOrderFinder(ShoppingOrderFinder shoppingOrderFinder) {
457                    this.shoppingOrderFinder = shoppingOrderFinder;
458            }
459    
460            /**
461             * Returns the shopping order item local service.
462             *
463             * @return the shopping order item local service
464             */
465            public com.liferay.portlet.shopping.service.ShoppingOrderItemLocalService getShoppingOrderItemLocalService() {
466                    return shoppingOrderItemLocalService;
467            }
468    
469            /**
470             * Sets the shopping order item local service.
471             *
472             * @param shoppingOrderItemLocalService the shopping order item local service
473             */
474            public void setShoppingOrderItemLocalService(
475                    com.liferay.portlet.shopping.service.ShoppingOrderItemLocalService shoppingOrderItemLocalService) {
476                    this.shoppingOrderItemLocalService = shoppingOrderItemLocalService;
477            }
478    
479            /**
480             * Returns the shopping order item persistence.
481             *
482             * @return the shopping order item persistence
483             */
484            public ShoppingOrderItemPersistence getShoppingOrderItemPersistence() {
485                    return shoppingOrderItemPersistence;
486            }
487    
488            /**
489             * Sets the shopping order item persistence.
490             *
491             * @param shoppingOrderItemPersistence the shopping order item persistence
492             */
493            public void setShoppingOrderItemPersistence(
494                    ShoppingOrderItemPersistence shoppingOrderItemPersistence) {
495                    this.shoppingOrderItemPersistence = shoppingOrderItemPersistence;
496            }
497    
498            /**
499             * Returns the counter local service.
500             *
501             * @return the counter local service
502             */
503            public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
504                    return counterLocalService;
505            }
506    
507            /**
508             * Sets the counter local service.
509             *
510             * @param counterLocalService the counter local service
511             */
512            public void setCounterLocalService(
513                    com.liferay.counter.service.CounterLocalService counterLocalService) {
514                    this.counterLocalService = counterLocalService;
515            }
516    
517            /**
518             * Returns the image local service.
519             *
520             * @return the image local service
521             */
522            public com.liferay.portal.service.ImageLocalService getImageLocalService() {
523                    return imageLocalService;
524            }
525    
526            /**
527             * Sets the image local service.
528             *
529             * @param imageLocalService the image local service
530             */
531            public void setImageLocalService(
532                    com.liferay.portal.service.ImageLocalService imageLocalService) {
533                    this.imageLocalService = imageLocalService;
534            }
535    
536            /**
537             * Returns the image remote service.
538             *
539             * @return the image remote service
540             */
541            public com.liferay.portal.service.ImageService getImageService() {
542                    return imageService;
543            }
544    
545            /**
546             * Sets the image remote service.
547             *
548             * @param imageService the image remote service
549             */
550            public void setImageService(
551                    com.liferay.portal.service.ImageService imageService) {
552                    this.imageService = imageService;
553            }
554    
555            /**
556             * Returns the image persistence.
557             *
558             * @return the image persistence
559             */
560            public ImagePersistence getImagePersistence() {
561                    return imagePersistence;
562            }
563    
564            /**
565             * Sets the image persistence.
566             *
567             * @param imagePersistence the image persistence
568             */
569            public void setImagePersistence(ImagePersistence imagePersistence) {
570                    this.imagePersistence = imagePersistence;
571            }
572    
573            /**
574             * Returns the resource local service.
575             *
576             * @return the resource local service
577             */
578            public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
579                    return resourceLocalService;
580            }
581    
582            /**
583             * Sets the resource local service.
584             *
585             * @param resourceLocalService the resource local service
586             */
587            public void setResourceLocalService(
588                    com.liferay.portal.service.ResourceLocalService resourceLocalService) {
589                    this.resourceLocalService = resourceLocalService;
590            }
591    
592            /**
593             * Returns the user local service.
594             *
595             * @return the user local service
596             */
597            public com.liferay.portal.service.UserLocalService getUserLocalService() {
598                    return userLocalService;
599            }
600    
601            /**
602             * Sets the user local service.
603             *
604             * @param userLocalService the user local service
605             */
606            public void setUserLocalService(
607                    com.liferay.portal.service.UserLocalService userLocalService) {
608                    this.userLocalService = userLocalService;
609            }
610    
611            /**
612             * Returns the user remote service.
613             *
614             * @return the user remote service
615             */
616            public com.liferay.portal.service.UserService getUserService() {
617                    return userService;
618            }
619    
620            /**
621             * Sets the user remote service.
622             *
623             * @param userService the user remote service
624             */
625            public void setUserService(
626                    com.liferay.portal.service.UserService userService) {
627                    this.userService = userService;
628            }
629    
630            /**
631             * Returns the user persistence.
632             *
633             * @return the user persistence
634             */
635            public UserPersistence getUserPersistence() {
636                    return userPersistence;
637            }
638    
639            /**
640             * Sets the user persistence.
641             *
642             * @param userPersistence the user persistence
643             */
644            public void setUserPersistence(UserPersistence userPersistence) {
645                    this.userPersistence = userPersistence;
646            }
647    
648            /**
649             * Returns the user finder.
650             *
651             * @return the user finder
652             */
653            public UserFinder getUserFinder() {
654                    return userFinder;
655            }
656    
657            /**
658             * Sets the user finder.
659             *
660             * @param userFinder the user finder
661             */
662            public void setUserFinder(UserFinder userFinder) {
663                    this.userFinder = userFinder;
664            }
665    
666            public void afterPropertiesSet() {
667            }
668    
669            public void destroy() {
670            }
671    
672            /**
673             * Returns the Spring bean ID for this bean.
674             *
675             * @return the Spring bean ID for this bean
676             */
677            @Override
678            public String getBeanIdentifier() {
679                    return _beanIdentifier;
680            }
681    
682            /**
683             * Sets the Spring bean ID for this bean.
684             *
685             * @param beanIdentifier the Spring bean ID for this bean
686             */
687            @Override
688            public void setBeanIdentifier(String beanIdentifier) {
689                    _beanIdentifier = beanIdentifier;
690            }
691    
692            protected Class<?> getModelClass() {
693                    return ShoppingItem.class;
694            }
695    
696            protected String getModelClassName() {
697                    return ShoppingItem.class.getName();
698            }
699    
700            /**
701             * Performs an SQL query.
702             *
703             * @param sql the sql query
704             */
705            protected void runSQL(String sql) throws SystemException {
706                    try {
707                            DataSource dataSource = shoppingItemPersistence.getDataSource();
708    
709                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
710                                            sql, new int[0]);
711    
712                            sqlUpdate.update();
713                    }
714                    catch (Exception e) {
715                            throw new SystemException(e);
716                    }
717            }
718    
719            @BeanReference(type = com.liferay.portlet.shopping.service.ShoppingCartLocalService.class)
720            protected com.liferay.portlet.shopping.service.ShoppingCartLocalService shoppingCartLocalService;
721            @BeanReference(type = ShoppingCartPersistence.class)
722            protected ShoppingCartPersistence shoppingCartPersistence;
723            @BeanReference(type = com.liferay.portlet.shopping.service.ShoppingCategoryLocalService.class)
724            protected com.liferay.portlet.shopping.service.ShoppingCategoryLocalService shoppingCategoryLocalService;
725            @BeanReference(type = com.liferay.portlet.shopping.service.ShoppingCategoryService.class)
726            protected com.liferay.portlet.shopping.service.ShoppingCategoryService shoppingCategoryService;
727            @BeanReference(type = ShoppingCategoryPersistence.class)
728            protected ShoppingCategoryPersistence shoppingCategoryPersistence;
729            @BeanReference(type = com.liferay.portlet.shopping.service.ShoppingCouponLocalService.class)
730            protected com.liferay.portlet.shopping.service.ShoppingCouponLocalService shoppingCouponLocalService;
731            @BeanReference(type = com.liferay.portlet.shopping.service.ShoppingCouponService.class)
732            protected com.liferay.portlet.shopping.service.ShoppingCouponService shoppingCouponService;
733            @BeanReference(type = ShoppingCouponPersistence.class)
734            protected ShoppingCouponPersistence shoppingCouponPersistence;
735            @BeanReference(type = ShoppingCouponFinder.class)
736            protected ShoppingCouponFinder shoppingCouponFinder;
737            @BeanReference(type = com.liferay.portlet.shopping.service.ShoppingItemLocalService.class)
738            protected com.liferay.portlet.shopping.service.ShoppingItemLocalService shoppingItemLocalService;
739            @BeanReference(type = com.liferay.portlet.shopping.service.ShoppingItemService.class)
740            protected com.liferay.portlet.shopping.service.ShoppingItemService shoppingItemService;
741            @BeanReference(type = ShoppingItemPersistence.class)
742            protected ShoppingItemPersistence shoppingItemPersistence;
743            @BeanReference(type = ShoppingItemFinder.class)
744            protected ShoppingItemFinder shoppingItemFinder;
745            @BeanReference(type = com.liferay.portlet.shopping.service.ShoppingItemFieldLocalService.class)
746            protected com.liferay.portlet.shopping.service.ShoppingItemFieldLocalService shoppingItemFieldLocalService;
747            @BeanReference(type = ShoppingItemFieldPersistence.class)
748            protected ShoppingItemFieldPersistence shoppingItemFieldPersistence;
749            @BeanReference(type = com.liferay.portlet.shopping.service.ShoppingItemPriceLocalService.class)
750            protected com.liferay.portlet.shopping.service.ShoppingItemPriceLocalService shoppingItemPriceLocalService;
751            @BeanReference(type = ShoppingItemPricePersistence.class)
752            protected ShoppingItemPricePersistence shoppingItemPricePersistence;
753            @BeanReference(type = com.liferay.portlet.shopping.service.ShoppingOrderLocalService.class)
754            protected com.liferay.portlet.shopping.service.ShoppingOrderLocalService shoppingOrderLocalService;
755            @BeanReference(type = com.liferay.portlet.shopping.service.ShoppingOrderService.class)
756            protected com.liferay.portlet.shopping.service.ShoppingOrderService shoppingOrderService;
757            @BeanReference(type = ShoppingOrderPersistence.class)
758            protected ShoppingOrderPersistence shoppingOrderPersistence;
759            @BeanReference(type = ShoppingOrderFinder.class)
760            protected ShoppingOrderFinder shoppingOrderFinder;
761            @BeanReference(type = com.liferay.portlet.shopping.service.ShoppingOrderItemLocalService.class)
762            protected com.liferay.portlet.shopping.service.ShoppingOrderItemLocalService shoppingOrderItemLocalService;
763            @BeanReference(type = ShoppingOrderItemPersistence.class)
764            protected ShoppingOrderItemPersistence shoppingOrderItemPersistence;
765            @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
766            protected com.liferay.counter.service.CounterLocalService counterLocalService;
767            @BeanReference(type = com.liferay.portal.service.ImageLocalService.class)
768            protected com.liferay.portal.service.ImageLocalService imageLocalService;
769            @BeanReference(type = com.liferay.portal.service.ImageService.class)
770            protected com.liferay.portal.service.ImageService imageService;
771            @BeanReference(type = ImagePersistence.class)
772            protected ImagePersistence imagePersistence;
773            @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
774            protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
775            @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
776            protected com.liferay.portal.service.UserLocalService userLocalService;
777            @BeanReference(type = com.liferay.portal.service.UserService.class)
778            protected com.liferay.portal.service.UserService userService;
779            @BeanReference(type = UserPersistence.class)
780            protected UserPersistence userPersistence;
781            @BeanReference(type = UserFinder.class)
782            protected UserFinder userFinder;
783            private String _beanIdentifier;
784    }