1
14
15 package com.liferay.portal.service;
16
17
18
34 public class OrgLaborServiceWrapper implements OrgLaborService {
35 public OrgLaborServiceWrapper(OrgLaborService orgLaborService) {
36 _orgLaborService = orgLaborService;
37 }
38
39 public com.liferay.portal.model.OrgLabor addOrgLabor(long organizationId,
40 int typeId, int sunOpen, int sunClose, int monOpen, int monClose,
41 int tueOpen, int tueClose, int wedOpen, int wedClose, int thuOpen,
42 int thuClose, int friOpen, int friClose, int satOpen, int satClose)
43 throws com.liferay.portal.kernel.exception.PortalException,
44 com.liferay.portal.kernel.exception.SystemException {
45 return _orgLaborService.addOrgLabor(organizationId, typeId, sunOpen,
46 sunClose, monOpen, monClose, tueOpen, tueClose, wedOpen, wedClose,
47 thuOpen, thuClose, friOpen, friClose, satOpen, satClose);
48 }
49
50 public void deleteOrgLabor(long orgLaborId)
51 throws com.liferay.portal.kernel.exception.PortalException,
52 com.liferay.portal.kernel.exception.SystemException {
53 _orgLaborService.deleteOrgLabor(orgLaborId);
54 }
55
56 public com.liferay.portal.model.OrgLabor getOrgLabor(long orgLaborId)
57 throws com.liferay.portal.kernel.exception.PortalException,
58 com.liferay.portal.kernel.exception.SystemException {
59 return _orgLaborService.getOrgLabor(orgLaborId);
60 }
61
62 public java.util.List<com.liferay.portal.model.OrgLabor> getOrgLabors(
63 long organizationId)
64 throws com.liferay.portal.kernel.exception.PortalException,
65 com.liferay.portal.kernel.exception.SystemException {
66 return _orgLaborService.getOrgLabors(organizationId);
67 }
68
69 public com.liferay.portal.model.OrgLabor updateOrgLabor(long orgLaborId,
70 int typeId, int sunOpen, int sunClose, int monOpen, int monClose,
71 int tueOpen, int tueClose, int wedOpen, int wedClose, int thuOpen,
72 int thuClose, int friOpen, int friClose, int satOpen, int satClose)
73 throws com.liferay.portal.kernel.exception.PortalException,
74 com.liferay.portal.kernel.exception.SystemException {
75 return _orgLaborService.updateOrgLabor(orgLaborId, typeId, sunOpen,
76 sunClose, monOpen, monClose, tueOpen, tueClose, wedOpen, wedClose,
77 thuOpen, thuClose, friOpen, friClose, satOpen, satClose);
78 }
79
80 public OrgLaborService getWrappedOrgLaborService() {
81 return _orgLaborService;
82 }
83
84 private OrgLaborService _orgLaborService;
85 }