001
014
015 package com.liferay.portal.service;
016
017
026 public class PortalServiceWrapper implements PortalService,
027 ServiceWrapper<PortalService> {
028 public PortalServiceWrapper(PortalService portalService) {
029 _portalService = portalService;
030 }
031
032 public java.lang.String getAutoDeployDirectory()
033 throws com.liferay.portal.kernel.exception.SystemException {
034 return _portalService.getAutoDeployDirectory();
035 }
036
037 public int getBuildNumber() {
038 return _portalService.getBuildNumber();
039 }
040
041 public void testAddClassName_Rollback(java.lang.String classNameValue)
042 throws com.liferay.portal.kernel.exception.SystemException {
043 _portalService.testAddClassName_Rollback(classNameValue);
044 }
045
046 public void testAddClassName_Success(java.lang.String classNameValue)
047 throws com.liferay.portal.kernel.exception.SystemException {
048 _portalService.testAddClassName_Success(classNameValue);
049 }
050
051 public void testAddClassNameAndTestTransactionPortletBar_PortalRollback(
052 java.lang.String transactionPortletBarText)
053 throws com.liferay.portal.kernel.exception.SystemException {
054 _portalService.testAddClassNameAndTestTransactionPortletBar_PortalRollback(transactionPortletBarText);
055 }
056
057 public void testAddClassNameAndTestTransactionPortletBar_PortletRollback(
058 java.lang.String transactionPortletBarText)
059 throws com.liferay.portal.kernel.exception.SystemException {
060 _portalService.testAddClassNameAndTestTransactionPortletBar_PortletRollback(transactionPortletBarText);
061 }
062
063 public void testAddClassNameAndTestTransactionPortletBar_Success(
064 java.lang.String transactionPortletBarText)
065 throws com.liferay.portal.kernel.exception.SystemException {
066 _portalService.testAddClassNameAndTestTransactionPortletBar_Success(transactionPortletBarText);
067 }
068
069 public void testCounterIncrement_Rollback()
070 throws com.liferay.portal.kernel.exception.SystemException {
071 _portalService.testCounterIncrement_Rollback();
072 }
073
074 public void testDeleteClassName()
075 throws com.liferay.portal.kernel.exception.PortalException,
076 com.liferay.portal.kernel.exception.SystemException {
077 _portalService.testDeleteClassName();
078 }
079
080 public void testGetUserId() {
081 _portalService.testGetUserId();
082 }
083
084 public boolean testHasClassName()
085 throws com.liferay.portal.kernel.exception.SystemException {
086 return _portalService.testHasClassName();
087 }
088
089
092 public PortalService getWrappedPortalService() {
093 return _portalService;
094 }
095
096
099 public void setWrappedPortalService(PortalService portalService) {
100 _portalService = portalService;
101 }
102
103 public PortalService getWrappedService() {
104 return _portalService;
105 }
106
107 public void setWrappedService(PortalService portalService) {
108 _portalService = portalService;
109 }
110
111 private PortalService _portalService;
112 }