com.liferay.portal.service
Class OrgLaborServiceUtil

java.lang.Object
  extended by com.liferay.portal.service.OrgLaborServiceUtil

public class OrgLaborServiceUtil
extends java.lang.Object

The utility for the org labor remote service. This utility wraps com.liferay.portal.service.impl.OrgLaborServiceImpl and is the primary access point for service operations in application layer code running on a remote server.

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.

Author:
Brian Wing Shun Chan
See Also:
OrgLaborService, OrgLaborServiceBaseImpl, com.liferay.portal.service.impl.OrgLaborServiceImpl
Generated:

Constructor Summary
OrgLaborServiceUtil()
           
 
Method Summary
static 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)
           
static void deleteOrgLabor(long orgLaborId)
           
static java.lang.String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
static OrgLabor getOrgLabor(long orgLaborId)
           
static java.util.List<OrgLabor> getOrgLabors(long organizationId)
           
static OrgLaborService getService()
           
static void setBeanIdentifier(java.lang.String beanIdentifier)
          Sets the Spring bean ID for this bean.
 void setService(OrgLaborService service)
          Deprecated.  
static 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)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OrgLaborServiceUtil

public OrgLaborServiceUtil()
Method Detail

getBeanIdentifier

public static java.lang.String getBeanIdentifier()
Returns the Spring bean ID for this bean.

Returns:
the Spring bean ID for this bean

setBeanIdentifier

public static void setBeanIdentifier(java.lang.String beanIdentifier)
Sets the Spring bean ID for this bean.

Parameters:
beanIdentifier - the Spring bean ID for this bean

addOrgLabor

public static 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

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

getOrgLabor

public static OrgLabor getOrgLabor(long orgLaborId)
                            throws PortalException,
                                   SystemException
Throws:
PortalException
SystemException

getOrgLabors

public static java.util.List<OrgLabor> getOrgLabors(long organizationId)
                                             throws PortalException,
                                                    SystemException
Throws:
PortalException
SystemException

updateOrgLabor

public static 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

getService

public static OrgLaborService getService()

setService

public void setService(OrgLaborService service)
Deprecated.