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