1
14
15 package com.liferay.portlet.softwarecatalog.service;
16
17
18
34 public class SCProductVersionLocalServiceWrapper
35 implements SCProductVersionLocalService {
36 public SCProductVersionLocalServiceWrapper(
37 SCProductVersionLocalService scProductVersionLocalService) {
38 _scProductVersionLocalService = scProductVersionLocalService;
39 }
40
41 public com.liferay.portlet.softwarecatalog.model.SCProductVersion addSCProductVersion(
42 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
43 throws com.liferay.portal.kernel.exception.SystemException {
44 return _scProductVersionLocalService.addSCProductVersion(scProductVersion);
45 }
46
47 public com.liferay.portlet.softwarecatalog.model.SCProductVersion createSCProductVersion(
48 long productVersionId) {
49 return _scProductVersionLocalService.createSCProductVersion(productVersionId);
50 }
51
52 public void deleteSCProductVersion(long productVersionId)
53 throws com.liferay.portal.kernel.exception.PortalException,
54 com.liferay.portal.kernel.exception.SystemException {
55 _scProductVersionLocalService.deleteSCProductVersion(productVersionId);
56 }
57
58 public void deleteSCProductVersion(
59 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
60 throws com.liferay.portal.kernel.exception.SystemException {
61 _scProductVersionLocalService.deleteSCProductVersion(scProductVersion);
62 }
63
64 public java.util.List<Object> dynamicQuery(
65 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
66 throws com.liferay.portal.kernel.exception.SystemException {
67 return _scProductVersionLocalService.dynamicQuery(dynamicQuery);
68 }
69
70 public java.util.List<Object> dynamicQuery(
71 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
72 int end) throws com.liferay.portal.kernel.exception.SystemException {
73 return _scProductVersionLocalService.dynamicQuery(dynamicQuery, start,
74 end);
75 }
76
77 public java.util.List<Object> dynamicQuery(
78 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
79 int end,
80 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
81 throws com.liferay.portal.kernel.exception.SystemException {
82 return _scProductVersionLocalService.dynamicQuery(dynamicQuery, start,
83 end, orderByComparator);
84 }
85
86 public int dynamicQueryCount(
87 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
88 throws com.liferay.portal.kernel.exception.SystemException {
89 return _scProductVersionLocalService.dynamicQueryCount(dynamicQuery);
90 }
91
92 public com.liferay.portlet.softwarecatalog.model.SCProductVersion getSCProductVersion(
93 long productVersionId)
94 throws com.liferay.portal.kernel.exception.PortalException,
95 com.liferay.portal.kernel.exception.SystemException {
96 return _scProductVersionLocalService.getSCProductVersion(productVersionId);
97 }
98
99 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> getSCProductVersions(
100 int start, int end)
101 throws com.liferay.portal.kernel.exception.SystemException {
102 return _scProductVersionLocalService.getSCProductVersions(start, end);
103 }
104
105 public int getSCProductVersionsCount()
106 throws com.liferay.portal.kernel.exception.SystemException {
107 return _scProductVersionLocalService.getSCProductVersionsCount();
108 }
109
110 public com.liferay.portlet.softwarecatalog.model.SCProductVersion updateSCProductVersion(
111 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
112 throws com.liferay.portal.kernel.exception.SystemException {
113 return _scProductVersionLocalService.updateSCProductVersion(scProductVersion);
114 }
115
116 public com.liferay.portlet.softwarecatalog.model.SCProductVersion updateSCProductVersion(
117 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion,
118 boolean merge)
119 throws com.liferay.portal.kernel.exception.SystemException {
120 return _scProductVersionLocalService.updateSCProductVersion(scProductVersion,
121 merge);
122 }
123
124 public com.liferay.portlet.softwarecatalog.model.SCProductVersion addProductVersion(
125 long userId, long productEntryId, java.lang.String version,
126 java.lang.String changeLog, java.lang.String downloadPageURL,
127 java.lang.String directDownloadURL, boolean testDirectDownloadURL,
128 boolean repoStoreArtifact, long[] frameworkVersionIds,
129 com.liferay.portal.service.ServiceContext serviceContext)
130 throws com.liferay.portal.kernel.exception.PortalException,
131 com.liferay.portal.kernel.exception.SystemException {
132 return _scProductVersionLocalService.addProductVersion(userId,
133 productEntryId, version, changeLog, downloadPageURL,
134 directDownloadURL, testDirectDownloadURL, repoStoreArtifact,
135 frameworkVersionIds, serviceContext);
136 }
137
138 public void deleteProductVersion(long productVersionId)
139 throws com.liferay.portal.kernel.exception.PortalException,
140 com.liferay.portal.kernel.exception.SystemException {
141 _scProductVersionLocalService.deleteProductVersion(productVersionId);
142 }
143
144 public void deleteProductVersion(
145 com.liferay.portlet.softwarecatalog.model.SCProductVersion productVersion)
146 throws com.liferay.portal.kernel.exception.SystemException {
147 _scProductVersionLocalService.deleteProductVersion(productVersion);
148 }
149
150 public void deleteProductVersions(long productEntryId)
151 throws com.liferay.portal.kernel.exception.SystemException {
152 _scProductVersionLocalService.deleteProductVersions(productEntryId);
153 }
154
155 public com.liferay.portlet.softwarecatalog.model.SCProductVersion getProductVersion(
156 long productVersionId)
157 throws com.liferay.portal.kernel.exception.PortalException,
158 com.liferay.portal.kernel.exception.SystemException {
159 return _scProductVersionLocalService.getProductVersion(productVersionId);
160 }
161
162 public com.liferay.portlet.softwarecatalog.model.SCProductVersion getProductVersionByDirectDownloadURL(
163 java.lang.String directDownloadURL)
164 throws com.liferay.portal.kernel.exception.PortalException,
165 com.liferay.portal.kernel.exception.SystemException {
166 return _scProductVersionLocalService.getProductVersionByDirectDownloadURL(directDownloadURL);
167 }
168
169 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> getProductVersions(
170 long productEntryId, int start, int end)
171 throws com.liferay.portal.kernel.exception.SystemException {
172 return _scProductVersionLocalService.getProductVersions(productEntryId,
173 start, end);
174 }
175
176 public int getProductVersionsCount(long productEntryId)
177 throws com.liferay.portal.kernel.exception.SystemException {
178 return _scProductVersionLocalService.getProductVersionsCount(productEntryId);
179 }
180
181 public com.liferay.portlet.softwarecatalog.model.SCProductVersion updateProductVersion(
182 long productVersionId, java.lang.String version,
183 java.lang.String changeLog, java.lang.String downloadPageURL,
184 java.lang.String directDownloadURL, boolean testDirectDownloadURL,
185 boolean repoStoreArtifact, long[] frameworkVersionIds)
186 throws com.liferay.portal.kernel.exception.PortalException,
187 com.liferay.portal.kernel.exception.SystemException {
188 return _scProductVersionLocalService.updateProductVersion(productVersionId,
189 version, changeLog, downloadPageURL, directDownloadURL,
190 testDirectDownloadURL, repoStoreArtifact, frameworkVersionIds);
191 }
192
193 public SCProductVersionLocalService getWrappedSCProductVersionLocalService() {
194 return _scProductVersionLocalService;
195 }
196
197 private SCProductVersionLocalService _scProductVersionLocalService;
198 }