001
014
015 package com.liferay.portlet.exportimport.service;
016
017 import aQute.bnd.annotation.ProviderType;
018
019 import com.liferay.portal.service.ServiceWrapper;
020
021
028 @ProviderType
029 public class ExportImportLocalServiceWrapper implements ExportImportLocalService,
030 ServiceWrapper<ExportImportLocalService> {
031 public ExportImportLocalServiceWrapper(
032 ExportImportLocalService exportImportLocalService) {
033 _exportImportLocalService = exportImportLocalService;
034 }
035
036 @Override
037 public java.io.File exportLayoutsAsFile(
038 com.liferay.portlet.exportimport.model.ExportImportConfiguration exportImportConfiguration)
039 throws com.liferay.portal.kernel.exception.PortalException {
040 return _exportImportLocalService.exportLayoutsAsFile(exportImportConfiguration);
041 }
042
043 @Override
044 public long exportLayoutsAsFileInBackground(long userId,
045 com.liferay.portlet.exportimport.model.ExportImportConfiguration exportImportConfiguration)
046 throws com.liferay.portal.kernel.exception.PortalException {
047 return _exportImportLocalService.exportLayoutsAsFileInBackground(userId,
048 exportImportConfiguration);
049 }
050
051 @Override
052 public long exportLayoutsAsFileInBackground(long userId,
053 long exportImportConfigurationId)
054 throws com.liferay.portal.kernel.exception.PortalException {
055 return _exportImportLocalService.exportLayoutsAsFileInBackground(userId,
056 exportImportConfigurationId);
057 }
058
059 @Override
060 public java.io.File exportPortletInfoAsFile(
061 com.liferay.portlet.exportimport.model.ExportImportConfiguration exportImportConfiguration)
062 throws com.liferay.portal.kernel.exception.PortalException {
063 return _exportImportLocalService.exportPortletInfoAsFile(exportImportConfiguration);
064 }
065
066 @Override
067 public long exportPortletInfoAsFileInBackground(long userId,
068 com.liferay.portlet.exportimport.model.ExportImportConfiguration exportImportConfiguration)
069 throws com.liferay.portal.kernel.exception.PortalException {
070 return _exportImportLocalService.exportPortletInfoAsFileInBackground(userId,
071 exportImportConfiguration);
072 }
073
074 @Override
075 public long exportPortletInfoAsFileInBackground(long userId,
076 long exportImportConfigurationId)
077 throws com.liferay.portal.kernel.exception.PortalException {
078 return _exportImportLocalService.exportPortletInfoAsFileInBackground(userId,
079 exportImportConfigurationId);
080 }
081
082
087 @Override
088 public java.lang.String getBeanIdentifier() {
089 return _exportImportLocalService.getBeanIdentifier();
090 }
091
092 @Override
093 public void importLayouts(
094 com.liferay.portlet.exportimport.model.ExportImportConfiguration exportImportConfiguration,
095 java.io.File file)
096 throws com.liferay.portal.kernel.exception.PortalException {
097 _exportImportLocalService.importLayouts(exportImportConfiguration, file);
098 }
099
100 @Override
101 public void importLayouts(
102 com.liferay.portlet.exportimport.model.ExportImportConfiguration exportImportConfiguration,
103 java.io.InputStream inputStream)
104 throws com.liferay.portal.kernel.exception.PortalException {
105 _exportImportLocalService.importLayouts(exportImportConfiguration,
106 inputStream);
107 }
108
109 @Override
110 public void importLayoutsDataDeletions(
111 com.liferay.portlet.exportimport.model.ExportImportConfiguration exportImportConfiguration,
112 java.io.File file)
113 throws com.liferay.portal.kernel.exception.PortalException {
114 _exportImportLocalService.importLayoutsDataDeletions(exportImportConfiguration,
115 file);
116 }
117
118 @Override
119 public long importLayoutsInBackground(long userId,
120 com.liferay.portlet.exportimport.model.ExportImportConfiguration exportImportConfiguration,
121 java.io.File file)
122 throws com.liferay.portal.kernel.exception.PortalException {
123 return _exportImportLocalService.importLayoutsInBackground(userId,
124 exportImportConfiguration, file);
125 }
126
127 @Override
128 public long importLayoutsInBackground(long userId,
129 com.liferay.portlet.exportimport.model.ExportImportConfiguration exportImportConfiguration,
130 java.io.InputStream inputStream)
131 throws com.liferay.portal.kernel.exception.PortalException {
132 return _exportImportLocalService.importLayoutsInBackground(userId,
133 exportImportConfiguration, inputStream);
134 }
135
136 @Override
137 public long importLayoutsInBackground(long userId,
138 long exportImportConfigurationId, java.io.File file)
139 throws com.liferay.portal.kernel.exception.PortalException {
140 return _exportImportLocalService.importLayoutsInBackground(userId,
141 exportImportConfigurationId, file);
142 }
143
144 @Override
145 public long importLayoutsInBackground(long userId,
146 long exportImportConfigurationId, java.io.InputStream inputStream)
147 throws com.liferay.portal.kernel.exception.PortalException {
148 return _exportImportLocalService.importLayoutsInBackground(userId,
149 exportImportConfigurationId, inputStream);
150 }
151
152 @Override
153 public void importPortletDataDeletions(
154 com.liferay.portlet.exportimport.model.ExportImportConfiguration exportImportConfiguration,
155 java.io.File file)
156 throws com.liferay.portal.kernel.exception.PortalException {
157 _exportImportLocalService.importPortletDataDeletions(exportImportConfiguration,
158 file);
159 }
160
161 @Override
162 public void importPortletInfo(
163 com.liferay.portlet.exportimport.model.ExportImportConfiguration exportImportConfiguration,
164 java.io.File file)
165 throws com.liferay.portal.kernel.exception.PortalException {
166 _exportImportLocalService.importPortletInfo(exportImportConfiguration,
167 file);
168 }
169
170 @Override
171 public void importPortletInfo(
172 com.liferay.portlet.exportimport.model.ExportImportConfiguration exportImportConfiguration,
173 java.io.InputStream inputStream)
174 throws com.liferay.portal.kernel.exception.PortalException {
175 _exportImportLocalService.importPortletInfo(exportImportConfiguration,
176 inputStream);
177 }
178
179 @Override
180 public long importPortletInfoInBackground(long userId,
181 com.liferay.portlet.exportimport.model.ExportImportConfiguration exportImportConfiguration,
182 java.io.File file)
183 throws com.liferay.portal.kernel.exception.PortalException {
184 return _exportImportLocalService.importPortletInfoInBackground(userId,
185 exportImportConfiguration, file);
186 }
187
188 @Override
189 public long importPortletInfoInBackground(long userId,
190 com.liferay.portlet.exportimport.model.ExportImportConfiguration exportImportConfiguration,
191 java.io.InputStream inputStream)
192 throws com.liferay.portal.kernel.exception.PortalException {
193 return _exportImportLocalService.importPortletInfoInBackground(userId,
194 exportImportConfiguration, inputStream);
195 }
196
197 @Override
198 public long importPortletInfoInBackground(long userId,
199 long exportImportConfigurationId, java.io.File file)
200 throws com.liferay.portal.kernel.exception.PortalException {
201 return _exportImportLocalService.importPortletInfoInBackground(userId,
202 exportImportConfigurationId, file);
203 }
204
205 @Override
206 public long importPortletInfoInBackground(long userId,
207 long exportImportConfigurationId, java.io.InputStream inputStream)
208 throws com.liferay.portal.kernel.exception.PortalException {
209 return _exportImportLocalService.importPortletInfoInBackground(userId,
210 exportImportConfigurationId, inputStream);
211 }
212
213
218 @Override
219 public void setBeanIdentifier(java.lang.String beanIdentifier) {
220 _exportImportLocalService.setBeanIdentifier(beanIdentifier);
221 }
222
223 @Override
224 public com.liferay.portlet.exportimport.lar.MissingReferences validateImportLayoutsFile(
225 com.liferay.portlet.exportimport.model.ExportImportConfiguration exportImportConfiguration,
226 java.io.File file)
227 throws com.liferay.portal.kernel.exception.PortalException {
228 return _exportImportLocalService.validateImportLayoutsFile(exportImportConfiguration,
229 file);
230 }
231
232 @Override
233 public com.liferay.portlet.exportimport.lar.MissingReferences validateImportLayoutsFile(
234 com.liferay.portlet.exportimport.model.ExportImportConfiguration exportImportConfiguration,
235 java.io.InputStream inputStream)
236 throws com.liferay.portal.kernel.exception.PortalException {
237 return _exportImportLocalService.validateImportLayoutsFile(exportImportConfiguration,
238 inputStream);
239 }
240
241 @Override
242 public com.liferay.portlet.exportimport.lar.MissingReferences validateImportPortletInfo(
243 com.liferay.portlet.exportimport.model.ExportImportConfiguration exportImportConfiguration,
244 java.io.File file)
245 throws com.liferay.portal.kernel.exception.PortalException {
246 return _exportImportLocalService.validateImportPortletInfo(exportImportConfiguration,
247 file);
248 }
249
250 @Override
251 public com.liferay.portlet.exportimport.lar.MissingReferences validateImportPortletInfo(
252 com.liferay.portlet.exportimport.model.ExportImportConfiguration exportImportConfiguration,
253 java.io.InputStream inputStream)
254 throws com.liferay.portal.kernel.exception.PortalException {
255 return _exportImportLocalService.validateImportPortletInfo(exportImportConfiguration,
256 inputStream);
257 }
258
259
262 @Deprecated
263 public ExportImportLocalService getWrappedExportImportLocalService() {
264 return _exportImportLocalService;
265 }
266
267
270 @Deprecated
271 public void setWrappedExportImportLocalService(
272 ExportImportLocalService exportImportLocalService) {
273 _exportImportLocalService = exportImportLocalService;
274 }
275
276 @Override
277 public ExportImportLocalService getWrappedService() {
278 return _exportImportLocalService;
279 }
280
281 @Override
282 public void setWrappedService(
283 ExportImportLocalService exportImportLocalService) {
284 _exportImportLocalService = exportImportLocalService;
285 }
286
287 private ExportImportLocalService _exportImportLocalService;
288 }