001
014
015 package com.liferay.portal.service;
016
017
018
027 public class OrgLaborServiceWrapper implements OrgLaborService {
028 public OrgLaborServiceWrapper(OrgLaborService orgLaborService) {
029 _orgLaborService = orgLaborService;
030 }
031
032 public com.liferay.portal.model.OrgLabor addOrgLabor(long organizationId,
033 int typeId, int sunOpen, int sunClose, int monOpen, int monClose,
034 int tueOpen, int tueClose, int wedOpen, int wedClose, int thuOpen,
035 int thuClose, int friOpen, int friClose, int satOpen, int satClose)
036 throws com.liferay.portal.kernel.exception.PortalException,
037 com.liferay.portal.kernel.exception.SystemException {
038 return _orgLaborService.addOrgLabor(organizationId, typeId, sunOpen,
039 sunClose, monOpen, monClose, tueOpen, tueClose, wedOpen, wedClose,
040 thuOpen, thuClose, friOpen, friClose, satOpen, satClose);
041 }
042
043 public void deleteOrgLabor(long orgLaborId)
044 throws com.liferay.portal.kernel.exception.PortalException,
045 com.liferay.portal.kernel.exception.SystemException {
046 _orgLaborService.deleteOrgLabor(orgLaborId);
047 }
048
049 public com.liferay.portal.model.OrgLabor getOrgLabor(long orgLaborId)
050 throws com.liferay.portal.kernel.exception.PortalException,
051 com.liferay.portal.kernel.exception.SystemException {
052 return _orgLaborService.getOrgLabor(orgLaborId);
053 }
054
055 public java.util.List<com.liferay.portal.model.OrgLabor> getOrgLabors(
056 long organizationId)
057 throws com.liferay.portal.kernel.exception.PortalException,
058 com.liferay.portal.kernel.exception.SystemException {
059 return _orgLaborService.getOrgLabors(organizationId);
060 }
061
062 public com.liferay.portal.model.OrgLabor updateOrgLabor(long orgLaborId,
063 int typeId, int sunOpen, int sunClose, int monOpen, int monClose,
064 int tueOpen, int tueClose, int wedOpen, int wedClose, int thuOpen,
065 int thuClose, int friOpen, int friClose, int satOpen, int satClose)
066 throws com.liferay.portal.kernel.exception.PortalException,
067 com.liferay.portal.kernel.exception.SystemException {
068 return _orgLaborService.updateOrgLabor(orgLaborId, typeId, sunOpen,
069 sunClose, monOpen, monClose, tueOpen, tueClose, wedOpen, wedClose,
070 thuOpen, thuClose, friOpen, friClose, satOpen, satClose);
071 }
072
073 public OrgLaborService getWrappedOrgLaborService() {
074 return _orgLaborService;
075 }
076
077 private OrgLaborService _orgLaborService;
078 }