1
14
15 package com.liferay.portlet.ratings.service;
16
17
18
34 public class RatingsEntryLocalServiceWrapper implements RatingsEntryLocalService {
35 public RatingsEntryLocalServiceWrapper(
36 RatingsEntryLocalService ratingsEntryLocalService) {
37 _ratingsEntryLocalService = ratingsEntryLocalService;
38 }
39
40 public com.liferay.portlet.ratings.model.RatingsEntry addRatingsEntry(
41 com.liferay.portlet.ratings.model.RatingsEntry ratingsEntry)
42 throws com.liferay.portal.kernel.exception.SystemException {
43 return _ratingsEntryLocalService.addRatingsEntry(ratingsEntry);
44 }
45
46 public com.liferay.portlet.ratings.model.RatingsEntry createRatingsEntry(
47 long entryId) {
48 return _ratingsEntryLocalService.createRatingsEntry(entryId);
49 }
50
51 public void deleteRatingsEntry(long entryId)
52 throws com.liferay.portal.kernel.exception.PortalException,
53 com.liferay.portal.kernel.exception.SystemException {
54 _ratingsEntryLocalService.deleteRatingsEntry(entryId);
55 }
56
57 public void deleteRatingsEntry(
58 com.liferay.portlet.ratings.model.RatingsEntry ratingsEntry)
59 throws com.liferay.portal.kernel.exception.SystemException {
60 _ratingsEntryLocalService.deleteRatingsEntry(ratingsEntry);
61 }
62
63 @SuppressWarnings("unchecked")
64 public java.util.List dynamicQuery(
65 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
66 throws com.liferay.portal.kernel.exception.SystemException {
67 return _ratingsEntryLocalService.dynamicQuery(dynamicQuery);
68 }
69
70 @SuppressWarnings("unchecked")
71 public java.util.List dynamicQuery(
72 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
73 int end) throws com.liferay.portal.kernel.exception.SystemException {
74 return _ratingsEntryLocalService.dynamicQuery(dynamicQuery, start, end);
75 }
76
77 @SuppressWarnings("unchecked")
78 public java.util.List dynamicQuery(
79 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
80 int end,
81 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
82 throws com.liferay.portal.kernel.exception.SystemException {
83 return _ratingsEntryLocalService.dynamicQuery(dynamicQuery, start, end,
84 orderByComparator);
85 }
86
87 public long dynamicQueryCount(
88 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
89 throws com.liferay.portal.kernel.exception.SystemException {
90 return _ratingsEntryLocalService.dynamicQueryCount(dynamicQuery);
91 }
92
93 public com.liferay.portlet.ratings.model.RatingsEntry getRatingsEntry(
94 long entryId)
95 throws com.liferay.portal.kernel.exception.PortalException,
96 com.liferay.portal.kernel.exception.SystemException {
97 return _ratingsEntryLocalService.getRatingsEntry(entryId);
98 }
99
100 public java.util.List<com.liferay.portlet.ratings.model.RatingsEntry> getRatingsEntries(
101 int start, int end)
102 throws com.liferay.portal.kernel.exception.SystemException {
103 return _ratingsEntryLocalService.getRatingsEntries(start, end);
104 }
105
106 public int getRatingsEntriesCount()
107 throws com.liferay.portal.kernel.exception.SystemException {
108 return _ratingsEntryLocalService.getRatingsEntriesCount();
109 }
110
111 public com.liferay.portlet.ratings.model.RatingsEntry updateRatingsEntry(
112 com.liferay.portlet.ratings.model.RatingsEntry ratingsEntry)
113 throws com.liferay.portal.kernel.exception.SystemException {
114 return _ratingsEntryLocalService.updateRatingsEntry(ratingsEntry);
115 }
116
117 public com.liferay.portlet.ratings.model.RatingsEntry updateRatingsEntry(
118 com.liferay.portlet.ratings.model.RatingsEntry ratingsEntry,
119 boolean merge)
120 throws com.liferay.portal.kernel.exception.SystemException {
121 return _ratingsEntryLocalService.updateRatingsEntry(ratingsEntry, merge);
122 }
123
124 public void deleteEntry(long userId, java.lang.String className,
125 long classPK)
126 throws com.liferay.portal.kernel.exception.PortalException,
127 com.liferay.portal.kernel.exception.SystemException {
128 _ratingsEntryLocalService.deleteEntry(userId, className, classPK);
129 }
130
131 public java.util.List<com.liferay.portlet.ratings.model.RatingsEntry> getEntries(
132 long userId, java.lang.String className,
133 java.util.List<java.lang.Long> classPKs)
134 throws com.liferay.portal.kernel.exception.SystemException {
135 return _ratingsEntryLocalService.getEntries(userId, className, classPKs);
136 }
137
138 public java.util.List<com.liferay.portlet.ratings.model.RatingsEntry> getEntries(
139 java.lang.String className, long classPK)
140 throws com.liferay.portal.kernel.exception.SystemException {
141 return _ratingsEntryLocalService.getEntries(className, classPK);
142 }
143
144 public com.liferay.portlet.ratings.model.RatingsEntry getEntry(
145 long userId, java.lang.String className, long classPK)
146 throws com.liferay.portal.kernel.exception.PortalException,
147 com.liferay.portal.kernel.exception.SystemException {
148 return _ratingsEntryLocalService.getEntry(userId, className, classPK);
149 }
150
151 public com.liferay.portlet.ratings.model.RatingsEntry updateEntry(
152 long userId, java.lang.String className, long classPK, double score,
153 com.liferay.portal.service.ServiceContext serviceContext)
154 throws com.liferay.portal.kernel.exception.PortalException,
155 com.liferay.portal.kernel.exception.SystemException {
156 return _ratingsEntryLocalService.updateEntry(userId, className,
157 classPK, score, serviceContext);
158 }
159
160 public RatingsEntryLocalService getWrappedRatingsEntryLocalService() {
161 return _ratingsEntryLocalService;
162 }
163
164 private RatingsEntryLocalService _ratingsEntryLocalService;
165 }