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.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.PortalException,
54 com.liferay.portal.SystemException {
55 _scProductVersionLocalService.deleteSCProductVersion(productVersionId);
56 }
57
58 public void deleteSCProductVersion(
59 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
60 throws com.liferay.portal.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.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.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.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.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.PortalException,
95 com.liferay.portal.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) throws com.liferay.portal.SystemException {
101 return _scProductVersionLocalService.getSCProductVersions(start, end);
102 }
103
104 public int getSCProductVersionsCount()
105 throws com.liferay.portal.SystemException {
106 return _scProductVersionLocalService.getSCProductVersionsCount();
107 }
108
109 public com.liferay.portlet.softwarecatalog.model.SCProductVersion updateSCProductVersion(
110 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion)
111 throws com.liferay.portal.SystemException {
112 return _scProductVersionLocalService.updateSCProductVersion(scProductVersion);
113 }
114
115 public com.liferay.portlet.softwarecatalog.model.SCProductVersion updateSCProductVersion(
116 com.liferay.portlet.softwarecatalog.model.SCProductVersion scProductVersion,
117 boolean merge) throws com.liferay.portal.SystemException {
118 return _scProductVersionLocalService.updateSCProductVersion(scProductVersion,
119 merge);
120 }
121
122 public com.liferay.portlet.softwarecatalog.model.SCProductVersion addProductVersion(
123 long userId, long productEntryId, java.lang.String version,
124 java.lang.String changeLog, java.lang.String downloadPageURL,
125 java.lang.String directDownloadURL, boolean testDirectDownloadURL,
126 boolean repoStoreArtifact, long[] frameworkVersionIds,
127 com.liferay.portal.service.ServiceContext serviceContext)
128 throws com.liferay.portal.PortalException,
129 com.liferay.portal.SystemException {
130 return _scProductVersionLocalService.addProductVersion(userId,
131 productEntryId, version, changeLog, downloadPageURL,
132 directDownloadURL, testDirectDownloadURL, repoStoreArtifact,
133 frameworkVersionIds, serviceContext);
134 }
135
136 public void deleteProductVersion(long productVersionId)
137 throws com.liferay.portal.PortalException,
138 com.liferay.portal.SystemException {
139 _scProductVersionLocalService.deleteProductVersion(productVersionId);
140 }
141
142 public void deleteProductVersion(
143 com.liferay.portlet.softwarecatalog.model.SCProductVersion productVersion)
144 throws com.liferay.portal.SystemException {
145 _scProductVersionLocalService.deleteProductVersion(productVersion);
146 }
147
148 public void deleteProductVersions(long productEntryId)
149 throws com.liferay.portal.SystemException {
150 _scProductVersionLocalService.deleteProductVersions(productEntryId);
151 }
152
153 public com.liferay.portlet.softwarecatalog.model.SCProductVersion getProductVersion(
154 long productVersionId)
155 throws com.liferay.portal.PortalException,
156 com.liferay.portal.SystemException {
157 return _scProductVersionLocalService.getProductVersion(productVersionId);
158 }
159
160 public com.liferay.portlet.softwarecatalog.model.SCProductVersion getProductVersionByDirectDownloadURL(
161 java.lang.String directDownloadURL)
162 throws com.liferay.portal.PortalException,
163 com.liferay.portal.SystemException {
164 return _scProductVersionLocalService.getProductVersionByDirectDownloadURL(directDownloadURL);
165 }
166
167 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> getProductVersions(
168 long productEntryId, int start, int end)
169 throws com.liferay.portal.SystemException {
170 return _scProductVersionLocalService.getProductVersions(productEntryId,
171 start, end);
172 }
173
174 public int getProductVersionsCount(long productEntryId)
175 throws com.liferay.portal.SystemException {
176 return _scProductVersionLocalService.getProductVersionsCount(productEntryId);
177 }
178
179 public com.liferay.portlet.softwarecatalog.model.SCProductVersion updateProductVersion(
180 long productVersionId, java.lang.String version,
181 java.lang.String changeLog, java.lang.String downloadPageURL,
182 java.lang.String directDownloadURL, boolean testDirectDownloadURL,
183 boolean repoStoreArtifact, long[] frameworkVersionIds)
184 throws com.liferay.portal.PortalException,
185 com.liferay.portal.SystemException {
186 return _scProductVersionLocalService.updateProductVersion(productVersionId,
187 version, changeLog, downloadPageURL, directDownloadURL,
188 testDirectDownloadURL, repoStoreArtifact, frameworkVersionIds);
189 }
190
191 public SCProductVersionLocalService getWrappedSCProductVersionLocalService() {
192 return _scProductVersionLocalService;
193 }
194
195 private SCProductVersionLocalService _scProductVersionLocalService;
196 }