1
14
15 package com.liferay.portal.service;
16
17
18
34 public class WebsiteLocalServiceWrapper implements WebsiteLocalService {
35 public WebsiteLocalServiceWrapper(WebsiteLocalService websiteLocalService) {
36 _websiteLocalService = websiteLocalService;
37 }
38
39 public com.liferay.portal.model.Website addWebsite(
40 com.liferay.portal.model.Website website)
41 throws com.liferay.portal.kernel.exception.SystemException {
42 return _websiteLocalService.addWebsite(website);
43 }
44
45 public com.liferay.portal.model.Website createWebsite(long websiteId) {
46 return _websiteLocalService.createWebsite(websiteId);
47 }
48
49 public void deleteWebsite(long websiteId)
50 throws com.liferay.portal.kernel.exception.PortalException,
51 com.liferay.portal.kernel.exception.SystemException {
52 _websiteLocalService.deleteWebsite(websiteId);
53 }
54
55 public void deleteWebsite(com.liferay.portal.model.Website website)
56 throws com.liferay.portal.kernel.exception.SystemException {
57 _websiteLocalService.deleteWebsite(website);
58 }
59
60 public java.util.List<Object> dynamicQuery(
61 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
62 throws com.liferay.portal.kernel.exception.SystemException {
63 return _websiteLocalService.dynamicQuery(dynamicQuery);
64 }
65
66 public java.util.List<Object> dynamicQuery(
67 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
68 int end) throws com.liferay.portal.kernel.exception.SystemException {
69 return _websiteLocalService.dynamicQuery(dynamicQuery, start, end);
70 }
71
72 public com.liferay.portal.model.Website getWebsite(long websiteId)
73 throws com.liferay.portal.kernel.exception.PortalException,
74 com.liferay.portal.kernel.exception.SystemException {
75 return _websiteLocalService.getWebsite(websiteId);
76 }
77
78 public java.util.List<com.liferay.portal.model.Website> getWebsites(
79 int start, int end)
80 throws com.liferay.portal.kernel.exception.SystemException {
81 return _websiteLocalService.getWebsites(start, end);
82 }
83
84 public int getWebsitesCount()
85 throws com.liferay.portal.kernel.exception.SystemException {
86 return _websiteLocalService.getWebsitesCount();
87 }
88
89 public com.liferay.portal.model.Website updateWebsite(
90 com.liferay.portal.model.Website website)
91 throws com.liferay.portal.kernel.exception.SystemException {
92 return _websiteLocalService.updateWebsite(website);
93 }
94
95 public com.liferay.portal.model.Website updateWebsite(
96 com.liferay.portal.model.Website website, boolean merge)
97 throws com.liferay.portal.kernel.exception.SystemException {
98 return _websiteLocalService.updateWebsite(website, merge);
99 }
100
101 public com.liferay.portal.model.Website addWebsite(long userId,
102 java.lang.String className, long classPK, java.lang.String url,
103 int typeId, boolean primary)
104 throws com.liferay.portal.kernel.exception.PortalException,
105 com.liferay.portal.kernel.exception.SystemException {
106 return _websiteLocalService.addWebsite(userId, className, classPK, url,
107 typeId, primary);
108 }
109
110 public void deleteWebsites(long companyId, java.lang.String className,
111 long classPK)
112 throws com.liferay.portal.kernel.exception.SystemException {
113 _websiteLocalService.deleteWebsites(companyId, className, classPK);
114 }
115
116 public java.util.List<com.liferay.portal.model.Website> getWebsites()
117 throws com.liferay.portal.kernel.exception.SystemException {
118 return _websiteLocalService.getWebsites();
119 }
120
121 public java.util.List<com.liferay.portal.model.Website> getWebsites(
122 long companyId, java.lang.String className, long classPK)
123 throws com.liferay.portal.kernel.exception.SystemException {
124 return _websiteLocalService.getWebsites(companyId, className, classPK);
125 }
126
127 public com.liferay.portal.model.Website updateWebsite(long websiteId,
128 java.lang.String url, int typeId, boolean primary)
129 throws com.liferay.portal.kernel.exception.PortalException,
130 com.liferay.portal.kernel.exception.SystemException {
131 return _websiteLocalService.updateWebsite(websiteId, url, typeId,
132 primary);
133 }
134
135 public WebsiteLocalService getWrappedWebsiteLocalService() {
136 return _websiteLocalService;
137 }
138
139 private WebsiteLocalService _websiteLocalService;
140 }