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.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.PortalException,
51 com.liferay.portal.SystemException {
52 _websiteLocalService.deleteWebsite(websiteId);
53 }
54
55 public void deleteWebsite(com.liferay.portal.model.Website website)
56 throws com.liferay.portal.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.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.SystemException {
69 return _websiteLocalService.dynamicQuery(dynamicQuery, start, end);
70 }
71
72 public java.util.List<Object> dynamicQuery(
73 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
74 int end,
75 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
76 throws com.liferay.portal.SystemException {
77 return _websiteLocalService.dynamicQuery(dynamicQuery, start, end,
78 orderByComparator);
79 }
80
81 public int dynamicQueryCount(
82 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
83 throws com.liferay.portal.SystemException {
84 return _websiteLocalService.dynamicQueryCount(dynamicQuery);
85 }
86
87 public com.liferay.portal.model.Website getWebsite(long websiteId)
88 throws com.liferay.portal.PortalException,
89 com.liferay.portal.SystemException {
90 return _websiteLocalService.getWebsite(websiteId);
91 }
92
93 public java.util.List<com.liferay.portal.model.Website> getWebsites(
94 int start, int end) throws com.liferay.portal.SystemException {
95 return _websiteLocalService.getWebsites(start, end);
96 }
97
98 public int getWebsitesCount() throws com.liferay.portal.SystemException {
99 return _websiteLocalService.getWebsitesCount();
100 }
101
102 public com.liferay.portal.model.Website updateWebsite(
103 com.liferay.portal.model.Website website)
104 throws com.liferay.portal.SystemException {
105 return _websiteLocalService.updateWebsite(website);
106 }
107
108 public com.liferay.portal.model.Website updateWebsite(
109 com.liferay.portal.model.Website website, boolean merge)
110 throws com.liferay.portal.SystemException {
111 return _websiteLocalService.updateWebsite(website, merge);
112 }
113
114 public com.liferay.portal.model.Website addWebsite(long userId,
115 java.lang.String className, long classPK, java.lang.String url,
116 int typeId, boolean primary)
117 throws com.liferay.portal.PortalException,
118 com.liferay.portal.SystemException {
119 return _websiteLocalService.addWebsite(userId, className, classPK, url,
120 typeId, primary);
121 }
122
123 public void deleteWebsites(long companyId, java.lang.String className,
124 long classPK) throws com.liferay.portal.SystemException {
125 _websiteLocalService.deleteWebsites(companyId, className, classPK);
126 }
127
128 public java.util.List<com.liferay.portal.model.Website> getWebsites()
129 throws com.liferay.portal.SystemException {
130 return _websiteLocalService.getWebsites();
131 }
132
133 public java.util.List<com.liferay.portal.model.Website> getWebsites(
134 long companyId, java.lang.String className, long classPK)
135 throws com.liferay.portal.SystemException {
136 return _websiteLocalService.getWebsites(companyId, className, classPK);
137 }
138
139 public com.liferay.portal.model.Website updateWebsite(long websiteId,
140 java.lang.String url, int typeId, boolean primary)
141 throws com.liferay.portal.PortalException,
142 com.liferay.portal.SystemException {
143 return _websiteLocalService.updateWebsite(websiteId, url, typeId,
144 primary);
145 }
146
147 public WebsiteLocalService getWrappedWebsiteLocalService() {
148 return _websiteLocalService;
149 }
150
151 private WebsiteLocalService _websiteLocalService;
152 }