Liferay 6.2.0

com.liferay.portal.service
Interface OrgLaborService

All Superinterfaces:
BaseService
All Known Implementing Classes:
OrgLaborServiceBaseImpl, OrgLaborServiceImpl, OrgLaborServiceWrapper

@ProviderType
@AccessControlled
@JSONWebService
@Transactional(isolation=PORTAL,
               rollbackFor={PortalException.class,SystemException.class})
public interface OrgLaborService
extends BaseService

Provides the remote service interface for OrgLabor. 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 it is generated.

Method Summary
abstract  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)
           
abstract  void deleteOrgLabor(long orgLaborId)
           
abstract  String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
abstract  OrgLabor getOrgLabor(long orgLaborId)
           
abstract  List<OrgLabor> getOrgLabors(long organizationId)
           
abstract  void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
abstract  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

getBeanIdentifier

String getBeanIdentifier()
Returns the Spring bean ID for this bean.

Returns:
the Spring bean ID for this bean

setBeanIdentifier

void setBeanIdentifier(String beanIdentifier)
Sets the Spring bean ID for this bean.

Parameters:
beanIdentifier - the Spring bean ID for this bean

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.2.0