Liferay 6.0.5

com.liferay.portal.service
Interface OrgLaborService

All Known Implementing Classes:
OrgLaborServiceBaseImpl, OrgLaborServiceImpl, OrgLaborServiceWrapper

@Transactional(isolation=PORTAL,
               rollbackFor={PortalException.class,SystemException.class})
public interface OrgLaborService

The interface for the org labor remote service.

Never modify or reference this interface directly. Always use OrgLaborServiceUtil to access the org labor remote service. Add custom service methods to OrgLaborServiceImpl and rerun ServiceBuilder to automatically copy the method declarations to this interface.

This is a remote service. Methods of this service are expected to have security checks based on the propagated JAAS credentials because this service can be accessed remotely.

See Also:
OrgLaborServiceUtil, OrgLaborServiceBaseImpl, OrgLaborServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Method Summary
 OrgLabor addOrgLabor(long organizationId, int typeId, int sunOpen, int sunClose, int monOpen, int monClose, int tueOpen, int tueClose, int wedOpen, int wedClose, int thuOpen, int thuClose, int friOpen, int friClose, int satOpen, int satClose)
           
 void deleteOrgLabor(long orgLaborId)
           
 OrgLabor getOrgLabor(long orgLaborId)
           
 List<OrgLabor> getOrgLabors(long organizationId)
           
 OrgLabor updateOrgLabor(long orgLaborId, int typeId, int sunOpen, int sunClose, int monOpen, int monClose, int tueOpen, int tueClose, int wedOpen, int wedClose, int thuOpen, int thuClose, int friOpen, int friClose, int satOpen, int satClose)
           
 

Method Detail

addOrgLabor

OrgLabor addOrgLabor(long organizationId,
                     int typeId,
                     int sunOpen,
                     int sunClose,
                     int monOpen,
                     int monClose,
                     int tueOpen,
                     int tueClose,
                     int wedOpen,
                     int wedClose,
                     int thuOpen,
                     int thuClose,
                     int friOpen,
                     int friClose,
                     int satOpen,
                     int satClose)
                     throws PortalException,
                            SystemException
Throws:
PortalException
SystemException

deleteOrgLabor

void deleteOrgLabor(long orgLaborId)
                    throws PortalException,
                           SystemException
Throws:
PortalException
SystemException

getOrgLabor

@Transactional(propagation=SUPPORTS,
               readOnly=true)
OrgLabor getOrgLabor(long orgLaborId)
                     throws PortalException,
                            SystemException
Throws:
PortalException
SystemException

getOrgLabors

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<OrgLabor> getOrgLabors(long organizationId)
                            throws PortalException,
                                   SystemException
Throws:
PortalException
SystemException

updateOrgLabor

OrgLabor updateOrgLabor(long orgLaborId,
                        int typeId,
                        int sunOpen,
                        int sunClose,
                        int monOpen,
                        int monClose,
                        int tueOpen,
                        int tueClose,
                        int wedOpen,
                        int wedClose,
                        int thuOpen,
                        int thuClose,
                        int friOpen,
                        int friClose,
                        int satOpen,
                        int satClose)
                        throws PortalException,
                               SystemException
Throws:
PortalException
SystemException

Liferay 6.0.5