1
14
15 package com.liferay.portlet.softwarecatalog.service;
16
17
18
34 public class SCLicenseLocalServiceWrapper implements SCLicenseLocalService {
35 public SCLicenseLocalServiceWrapper(
36 SCLicenseLocalService scLicenseLocalService) {
37 _scLicenseLocalService = scLicenseLocalService;
38 }
39
40 public com.liferay.portlet.softwarecatalog.model.SCLicense addSCLicense(
41 com.liferay.portlet.softwarecatalog.model.SCLicense scLicense)
42 throws com.liferay.portal.SystemException {
43 return _scLicenseLocalService.addSCLicense(scLicense);
44 }
45
46 public com.liferay.portlet.softwarecatalog.model.SCLicense createSCLicense(
47 long licenseId) {
48 return _scLicenseLocalService.createSCLicense(licenseId);
49 }
50
51 public void deleteSCLicense(long licenseId)
52 throws com.liferay.portal.PortalException,
53 com.liferay.portal.SystemException {
54 _scLicenseLocalService.deleteSCLicense(licenseId);
55 }
56
57 public void deleteSCLicense(
58 com.liferay.portlet.softwarecatalog.model.SCLicense scLicense)
59 throws com.liferay.portal.SystemException {
60 _scLicenseLocalService.deleteSCLicense(scLicense);
61 }
62
63 public java.util.List<Object> dynamicQuery(
64 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
65 throws com.liferay.portal.SystemException {
66 return _scLicenseLocalService.dynamicQuery(dynamicQuery);
67 }
68
69 public java.util.List<Object> dynamicQuery(
70 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
71 int end) throws com.liferay.portal.SystemException {
72 return _scLicenseLocalService.dynamicQuery(dynamicQuery, start, end);
73 }
74
75 public com.liferay.portlet.softwarecatalog.model.SCLicense getSCLicense(
76 long licenseId)
77 throws com.liferay.portal.PortalException,
78 com.liferay.portal.SystemException {
79 return _scLicenseLocalService.getSCLicense(licenseId);
80 }
81
82 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> getSCLicenses(
83 int start, int end) throws com.liferay.portal.SystemException {
84 return _scLicenseLocalService.getSCLicenses(start, end);
85 }
86
87 public int getSCLicensesCount() throws com.liferay.portal.SystemException {
88 return _scLicenseLocalService.getSCLicensesCount();
89 }
90
91 public com.liferay.portlet.softwarecatalog.model.SCLicense updateSCLicense(
92 com.liferay.portlet.softwarecatalog.model.SCLicense scLicense)
93 throws com.liferay.portal.SystemException {
94 return _scLicenseLocalService.updateSCLicense(scLicense);
95 }
96
97 public com.liferay.portlet.softwarecatalog.model.SCLicense updateSCLicense(
98 com.liferay.portlet.softwarecatalog.model.SCLicense scLicense,
99 boolean merge) throws com.liferay.portal.SystemException {
100 return _scLicenseLocalService.updateSCLicense(scLicense, merge);
101 }
102
103 public com.liferay.portlet.softwarecatalog.model.SCLicense addLicense(
104 java.lang.String name, java.lang.String url, boolean openSource,
105 boolean active, boolean recommended)
106 throws com.liferay.portal.PortalException,
107 com.liferay.portal.SystemException {
108 return _scLicenseLocalService.addLicense(name, url, openSource, active,
109 recommended);
110 }
111
112 public void deleteLicense(long licenseId)
113 throws com.liferay.portal.PortalException,
114 com.liferay.portal.SystemException {
115 _scLicenseLocalService.deleteLicense(licenseId);
116 }
117
118 public com.liferay.portlet.softwarecatalog.model.SCLicense getLicense(
119 long licenseId)
120 throws com.liferay.portal.PortalException,
121 com.liferay.portal.SystemException {
122 return _scLicenseLocalService.getLicense(licenseId);
123 }
124
125 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> getLicenses()
126 throws com.liferay.portal.SystemException {
127 return _scLicenseLocalService.getLicenses();
128 }
129
130 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> getLicenses(
131 boolean active, boolean recommended)
132 throws com.liferay.portal.SystemException {
133 return _scLicenseLocalService.getLicenses(active, recommended);
134 }
135
136 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> getLicenses(
137 boolean active, boolean recommended, int start, int end)
138 throws com.liferay.portal.SystemException {
139 return _scLicenseLocalService.getLicenses(active, recommended, start,
140 end);
141 }
142
143 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> getLicenses(
144 int start, int end) throws com.liferay.portal.SystemException {
145 return _scLicenseLocalService.getLicenses(start, end);
146 }
147
148 public int getLicensesCount() throws com.liferay.portal.SystemException {
149 return _scLicenseLocalService.getLicensesCount();
150 }
151
152 public int getLicensesCount(boolean active, boolean recommended)
153 throws com.liferay.portal.SystemException {
154 return _scLicenseLocalService.getLicensesCount(active, recommended);
155 }
156
157 public java.util.List<com.liferay.portlet.softwarecatalog.model.SCLicense> getProductEntryLicenses(
158 long productEntryId) throws com.liferay.portal.SystemException {
159 return _scLicenseLocalService.getProductEntryLicenses(productEntryId);
160 }
161
162 public com.liferay.portlet.softwarecatalog.model.SCLicense updateLicense(
163 long licenseId, java.lang.String name, java.lang.String url,
164 boolean openSource, boolean active, boolean recommended)
165 throws com.liferay.portal.PortalException,
166 com.liferay.portal.SystemException {
167 return _scLicenseLocalService.updateLicense(licenseId, name, url,
168 openSource, active, recommended);
169 }
170
171 public SCLicenseLocalService getWrappedSCLicenseLocalService() {
172 return _scLicenseLocalService;
173 }
174
175 private SCLicenseLocalService _scLicenseLocalService;
176 }