/modules/dxp/apps/portal-reports-engine-console/portal-reports-engine-console-api/src/main/java/com/liferay/portal/reports/engine/console/service/SourceLocalServiceWrapper.java

http://github.com/liferay/liferay-portal · Java · 473 lines · 222 code · 70 blank · 181 comment · 0 complexity · 70109a21117268bc4efc7f5be21a4c4a MD5 · raw file

  1. /**
  2. * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
  3. *
  4. * The contents of this file are subject to the terms of the Liferay Enterprise
  5. * Subscription License ("License"). You may not use this file except in
  6. * compliance with the License. You can obtain a copy of the License by
  7. * contacting Liferay, Inc. See the License for the specific language governing
  8. * permissions and limitations under the License, including but not limited to
  9. * distribution rights of the Software.
  10. *
  11. *
  12. *
  13. */
  14. package com.liferay.portal.reports.engine.console.service;
  15. import com.liferay.portal.kernel.service.ServiceWrapper;
  16. /**
  17. * Provides a wrapper for {@link SourceLocalService}.
  18. *
  19. * @author Brian Wing Shun Chan
  20. * @see SourceLocalService
  21. * @generated
  22. */
  23. public class SourceLocalServiceWrapper
  24. implements ServiceWrapper<SourceLocalService>, SourceLocalService {
  25. public SourceLocalServiceWrapper(SourceLocalService sourceLocalService) {
  26. _sourceLocalService = sourceLocalService;
  27. }
  28. @Override
  29. public com.liferay.portal.reports.engine.console.model.Source addSource(
  30. long userId, long groupId,
  31. java.util.Map<java.util.Locale, String> nameMap,
  32. String driverClassName, String driverUrl, String driverUserName,
  33. String driverPassword,
  34. com.liferay.portal.kernel.service.ServiceContext serviceContext)
  35. throws com.liferay.portal.kernel.exception.PortalException {
  36. return _sourceLocalService.addSource(
  37. userId, groupId, nameMap, driverClassName, driverUrl,
  38. driverUserName, driverPassword, serviceContext);
  39. }
  40. /**
  41. * Adds the source to the database. Also notifies the appropriate model listeners.
  42. *
  43. * <p>
  44. * <strong>Important:</strong> Inspect SourceLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
  45. * </p>
  46. *
  47. * @param source the source
  48. * @return the source that was added
  49. */
  50. @Override
  51. public com.liferay.portal.reports.engine.console.model.Source addSource(
  52. com.liferay.portal.reports.engine.console.model.Source source) {
  53. return _sourceLocalService.addSource(source);
  54. }
  55. /**
  56. * @throws PortalException
  57. */
  58. @Override
  59. public com.liferay.portal.kernel.model.PersistedModel createPersistedModel(
  60. java.io.Serializable primaryKeyObj)
  61. throws com.liferay.portal.kernel.exception.PortalException {
  62. return _sourceLocalService.createPersistedModel(primaryKeyObj);
  63. }
  64. /**
  65. * Creates a new source with the primary key. Does not add the source to the database.
  66. *
  67. * @param sourceId the primary key for the new source
  68. * @return the new source
  69. */
  70. @Override
  71. public com.liferay.portal.reports.engine.console.model.Source createSource(
  72. long sourceId) {
  73. return _sourceLocalService.createSource(sourceId);
  74. }
  75. /**
  76. * @throws PortalException
  77. */
  78. @Override
  79. public com.liferay.portal.kernel.model.PersistedModel deletePersistedModel(
  80. com.liferay.portal.kernel.model.PersistedModel persistedModel)
  81. throws com.liferay.portal.kernel.exception.PortalException {
  82. return _sourceLocalService.deletePersistedModel(persistedModel);
  83. }
  84. /**
  85. * Deletes the source with the primary key from the database. Also notifies the appropriate model listeners.
  86. *
  87. * <p>
  88. * <strong>Important:</strong> Inspect SourceLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
  89. * </p>
  90. *
  91. * @param sourceId the primary key of the source
  92. * @return the source that was removed
  93. * @throws PortalException if a source with the primary key could not be found
  94. */
  95. @Override
  96. public com.liferay.portal.reports.engine.console.model.Source deleteSource(
  97. long sourceId)
  98. throws com.liferay.portal.kernel.exception.PortalException {
  99. return _sourceLocalService.deleteSource(sourceId);
  100. }
  101. /**
  102. * Deletes the source from the database. Also notifies the appropriate model listeners.
  103. *
  104. * <p>
  105. * <strong>Important:</strong> Inspect SourceLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
  106. * </p>
  107. *
  108. * @param source the source
  109. * @return the source that was removed
  110. * @throws PortalException
  111. */
  112. @Override
  113. public com.liferay.portal.reports.engine.console.model.Source deleteSource(
  114. com.liferay.portal.reports.engine.console.model.Source source)
  115. throws com.liferay.portal.kernel.exception.PortalException {
  116. return _sourceLocalService.deleteSource(source);
  117. }
  118. @Override
  119. public void deleteSources(long groupId)
  120. throws com.liferay.portal.kernel.exception.PortalException {
  121. _sourceLocalService.deleteSources(groupId);
  122. }
  123. @Override
  124. public <T> T dslQuery(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) {
  125. return _sourceLocalService.dslQuery(dslQuery);
  126. }
  127. @Override
  128. public int dslQueryCount(
  129. com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) {
  130. return _sourceLocalService.dslQueryCount(dslQuery);
  131. }
  132. @Override
  133. public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
  134. return _sourceLocalService.dynamicQuery();
  135. }
  136. /**
  137. * Performs a dynamic query on the database and returns the matching rows.
  138. *
  139. * @param dynamicQuery the dynamic query
  140. * @return the matching rows
  141. */
  142. @Override
  143. public <T> java.util.List<T> dynamicQuery(
  144. com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) {
  145. return _sourceLocalService.dynamicQuery(dynamicQuery);
  146. }
  147. /**
  148. * Performs a dynamic query on the database and returns a range of the matching rows.
  149. *
  150. * <p>
  151. * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to <code>com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS</code> will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent, then the query will include the default ORDER BY logic from <code>com.liferay.portal.reports.engine.console.model.impl.SourceModelImpl</code>.
  152. * </p>
  153. *
  154. * @param dynamicQuery the dynamic query
  155. * @param start the lower bound of the range of model instances
  156. * @param end the upper bound of the range of model instances (not inclusive)
  157. * @return the range of matching rows
  158. */
  159. @Override
  160. public <T> java.util.List<T> dynamicQuery(
  161. com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
  162. int end) {
  163. return _sourceLocalService.dynamicQuery(dynamicQuery, start, end);
  164. }
  165. /**
  166. * Performs a dynamic query on the database and returns an ordered range of the matching rows.
  167. *
  168. * <p>
  169. * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to <code>com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS</code> will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent, then the query will include the default ORDER BY logic from <code>com.liferay.portal.reports.engine.console.model.impl.SourceModelImpl</code>.
  170. * </p>
  171. *
  172. * @param dynamicQuery the dynamic query
  173. * @param start the lower bound of the range of model instances
  174. * @param end the upper bound of the range of model instances (not inclusive)
  175. * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
  176. * @return the ordered range of matching rows
  177. */
  178. @Override
  179. public <T> java.util.List<T> dynamicQuery(
  180. com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
  181. int end,
  182. com.liferay.portal.kernel.util.OrderByComparator<T> orderByComparator) {
  183. return _sourceLocalService.dynamicQuery(
  184. dynamicQuery, start, end, orderByComparator);
  185. }
  186. /**
  187. * Returns the number of rows matching the dynamic query.
  188. *
  189. * @param dynamicQuery the dynamic query
  190. * @return the number of rows matching the dynamic query
  191. */
  192. @Override
  193. public long dynamicQueryCount(
  194. com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) {
  195. return _sourceLocalService.dynamicQueryCount(dynamicQuery);
  196. }
  197. /**
  198. * Returns the number of rows matching the dynamic query.
  199. *
  200. * @param dynamicQuery the dynamic query
  201. * @param projection the projection to apply to the query
  202. * @return the number of rows matching the dynamic query
  203. */
  204. @Override
  205. public long dynamicQueryCount(
  206. com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
  207. com.liferay.portal.kernel.dao.orm.Projection projection) {
  208. return _sourceLocalService.dynamicQueryCount(dynamicQuery, projection);
  209. }
  210. @Override
  211. public com.liferay.portal.reports.engine.console.model.Source fetchSource(
  212. long sourceId) {
  213. return _sourceLocalService.fetchSource(sourceId);
  214. }
  215. /**
  216. * Returns the source matching the UUID and group.
  217. *
  218. * @param uuid the source's UUID
  219. * @param groupId the primary key of the group
  220. * @return the matching source, or <code>null</code> if a matching source could not be found
  221. */
  222. @Override
  223. public com.liferay.portal.reports.engine.console.model.Source
  224. fetchSourceByUuidAndGroupId(String uuid, long groupId) {
  225. return _sourceLocalService.fetchSourceByUuidAndGroupId(uuid, groupId);
  226. }
  227. @Override
  228. public com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery
  229. getActionableDynamicQuery() {
  230. return _sourceLocalService.getActionableDynamicQuery();
  231. }
  232. @Override
  233. public com.liferay.portal.kernel.dao.orm.ExportActionableDynamicQuery
  234. getExportActionableDynamicQuery(
  235. com.liferay.exportimport.kernel.lar.PortletDataContext
  236. portletDataContext) {
  237. return _sourceLocalService.getExportActionableDynamicQuery(
  238. portletDataContext);
  239. }
  240. @Override
  241. public com.liferay.portal.kernel.dao.orm.IndexableActionableDynamicQuery
  242. getIndexableActionableDynamicQuery() {
  243. return _sourceLocalService.getIndexableActionableDynamicQuery();
  244. }
  245. /**
  246. * Returns the OSGi service identifier.
  247. *
  248. * @return the OSGi service identifier
  249. */
  250. @Override
  251. public String getOSGiServiceIdentifier() {
  252. return _sourceLocalService.getOSGiServiceIdentifier();
  253. }
  254. /**
  255. * @throws PortalException
  256. */
  257. @Override
  258. public com.liferay.portal.kernel.model.PersistedModel getPersistedModel(
  259. java.io.Serializable primaryKeyObj)
  260. throws com.liferay.portal.kernel.exception.PortalException {
  261. return _sourceLocalService.getPersistedModel(primaryKeyObj);
  262. }
  263. /**
  264. * Returns the source with the primary key.
  265. *
  266. * @param sourceId the primary key of the source
  267. * @return the source
  268. * @throws PortalException if a source with the primary key could not be found
  269. */
  270. @Override
  271. public com.liferay.portal.reports.engine.console.model.Source getSource(
  272. long sourceId)
  273. throws com.liferay.portal.kernel.exception.PortalException {
  274. return _sourceLocalService.getSource(sourceId);
  275. }
  276. /**
  277. * Returns the source matching the UUID and group.
  278. *
  279. * @param uuid the source's UUID
  280. * @param groupId the primary key of the group
  281. * @return the matching source
  282. * @throws PortalException if a matching source could not be found
  283. */
  284. @Override
  285. public com.liferay.portal.reports.engine.console.model.Source
  286. getSourceByUuidAndGroupId(String uuid, long groupId)
  287. throws com.liferay.portal.kernel.exception.PortalException {
  288. return _sourceLocalService.getSourceByUuidAndGroupId(uuid, groupId);
  289. }
  290. /**
  291. * Returns a range of all the sources.
  292. *
  293. * <p>
  294. * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to <code>com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS</code> will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent, then the query will include the default ORDER BY logic from <code>com.liferay.portal.reports.engine.console.model.impl.SourceModelImpl</code>.
  295. * </p>
  296. *
  297. * @param start the lower bound of the range of sources
  298. * @param end the upper bound of the range of sources (not inclusive)
  299. * @return the range of sources
  300. */
  301. @Override
  302. public java.util.List
  303. <com.liferay.portal.reports.engine.console.model.Source> getSources(
  304. int start, int end) {
  305. return _sourceLocalService.getSources(start, end);
  306. }
  307. @Override
  308. public java.util.List
  309. <com.liferay.portal.reports.engine.console.model.Source> getSources(
  310. long groupId, String name, String driverUrl, boolean andSearch,
  311. int start, int end,
  312. com.liferay.portal.kernel.util.OrderByComparator
  313. <com.liferay.portal.reports.engine.console.model.Source>
  314. orderByComparator) {
  315. return _sourceLocalService.getSources(
  316. groupId, name, driverUrl, andSearch, start, end, orderByComparator);
  317. }
  318. /**
  319. * Returns all the sources matching the UUID and company.
  320. *
  321. * @param uuid the UUID of the sources
  322. * @param companyId the primary key of the company
  323. * @return the matching sources, or an empty list if no matches were found
  324. */
  325. @Override
  326. public java.util.List
  327. <com.liferay.portal.reports.engine.console.model.Source>
  328. getSourcesByUuidAndCompanyId(String uuid, long companyId) {
  329. return _sourceLocalService.getSourcesByUuidAndCompanyId(
  330. uuid, companyId);
  331. }
  332. /**
  333. * Returns a range of sources matching the UUID and company.
  334. *
  335. * @param uuid the UUID of the sources
  336. * @param companyId the primary key of the company
  337. * @param start the lower bound of the range of sources
  338. * @param end the upper bound of the range of sources (not inclusive)
  339. * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
  340. * @return the range of matching sources, or an empty list if no matches were found
  341. */
  342. @Override
  343. public java.util.List
  344. <com.liferay.portal.reports.engine.console.model.Source>
  345. getSourcesByUuidAndCompanyId(
  346. String uuid, long companyId, int start, int end,
  347. com.liferay.portal.kernel.util.OrderByComparator
  348. <com.liferay.portal.reports.engine.console.model.Source>
  349. orderByComparator) {
  350. return _sourceLocalService.getSourcesByUuidAndCompanyId(
  351. uuid, companyId, start, end, orderByComparator);
  352. }
  353. /**
  354. * Returns the number of sources.
  355. *
  356. * @return the number of sources
  357. */
  358. @Override
  359. public int getSourcesCount() {
  360. return _sourceLocalService.getSourcesCount();
  361. }
  362. @Override
  363. public int getSourcesCount(
  364. long groupId, String name, String driverUrl, boolean andSearch) {
  365. return _sourceLocalService.getSourcesCount(
  366. groupId, name, driverUrl, andSearch);
  367. }
  368. @Override
  369. public com.liferay.portal.reports.engine.console.model.Source updateSource(
  370. long sourceId, java.util.Map<java.util.Locale, String> nameMap,
  371. String driverClassName, String driverUrl, String driverUserName,
  372. String driverPassword,
  373. com.liferay.portal.kernel.service.ServiceContext serviceContext)
  374. throws com.liferay.portal.kernel.exception.PortalException {
  375. return _sourceLocalService.updateSource(
  376. sourceId, nameMap, driverClassName, driverUrl, driverUserName,
  377. driverPassword, serviceContext);
  378. }
  379. /**
  380. * Updates the source in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
  381. *
  382. * <p>
  383. * <strong>Important:</strong> Inspect SourceLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
  384. * </p>
  385. *
  386. * @param source the source
  387. * @return the source that was updated
  388. */
  389. @Override
  390. public com.liferay.portal.reports.engine.console.model.Source updateSource(
  391. com.liferay.portal.reports.engine.console.model.Source source) {
  392. return _sourceLocalService.updateSource(source);
  393. }
  394. @Override
  395. public SourceLocalService getWrappedService() {
  396. return _sourceLocalService;
  397. }
  398. @Override
  399. public void setWrappedService(SourceLocalService sourceLocalService) {
  400. _sourceLocalService = sourceLocalService;
  401. }
  402. private SourceLocalService _sourceLocalService;
  403. }