Liferay 7.0-ce-b4

com.liferay.portal.service.base
Class OrgLaborServiceBaseImpl

java.lang.Object
  extended by com.liferay.portal.service.BaseServiceImpl
      extended by com.liferay.portal.service.base.OrgLaborServiceBaseImpl
All Implemented Interfaces:
IdentifiableOSGiService, BaseService, OrgLaborService
Direct Known Subclasses:
OrgLaborServiceImpl

public abstract class OrgLaborServiceBaseImpl
extends BaseServiceImpl
implements OrgLaborService, IdentifiableOSGiService

Provides the base implementation for the org labor remote service.

This implementation exists only as a container for the default service methods generated by ServiceBuilder. All custom service methods should be put in OrgLaborServiceImpl.

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

Field Summary
protected  CounterLocalService counterLocalService
           
protected  ListTypeLocalService listTypeLocalService
           
protected  ListTypePersistence listTypePersistence
           
protected  ListTypeService listTypeService
           
protected  OrgLaborLocalService orgLaborLocalService
           
protected  OrgLaborPersistence orgLaborPersistence
           
protected  OrgLaborService orgLaborService
           
 
Fields inherited from class com.liferay.portal.service.BaseServiceImpl
ANONYMOUS_NAMES, JRUN_ANONYMOUS, ORACLE_ANONYMOUS, SUN_ANONYMOUS, WEBLOGIC_ANONYMOUS
 
Constructor Summary
OrgLaborServiceBaseImpl()
           
 
Method Summary
 void afterPropertiesSet()
           
 void destroy()
           
 CounterLocalService getCounterLocalService()
          Returns the counter local service.
 ListTypeLocalService getListTypeLocalService()
          Returns the list type local service.
 ListTypePersistence getListTypePersistence()
          Returns the list type persistence.
 ListTypeService getListTypeService()
          Returns the list type remote service.
protected  Class<?> getModelClass()
           
protected  String getModelClassName()
           
 OrgLaborLocalService getOrgLaborLocalService()
          Returns the org labor local service.
 OrgLaborPersistence getOrgLaborPersistence()
          Returns the org labor persistence.
 OrgLaborService getOrgLaborService()
          Returns the org labor remote service.
 String getOSGiServiceIdentifier()
          Returns the OSGi service identifier.
protected  void runSQL(String sql)
          Performs a SQL query.
 void setCounterLocalService(CounterLocalService counterLocalService)
          Sets the counter local service.
 void setListTypeLocalService(ListTypeLocalService listTypeLocalService)
          Sets the list type local service.
 void setListTypePersistence(ListTypePersistence listTypePersistence)
          Sets the list type persistence.
 void setListTypeService(ListTypeService listTypeService)
          Sets the list type remote service.
 void setOrgLaborLocalService(OrgLaborLocalService orgLaborLocalService)
          Sets the org labor local service.
 void setOrgLaborPersistence(OrgLaborPersistence orgLaborPersistence)
          Sets the org labor persistence.
 void setOrgLaborService(OrgLaborService orgLaborService)
          Sets the org labor remote service.
 
Methods inherited from class com.liferay.portal.service.BaseServiceImpl
getClassLoader, getGuestOrUser, getGuestOrUserId, getPermissionChecker, getUser, getUserId
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface com.liferay.portal.service.OrgLaborService
addOrgLabor, deleteOrgLabor, getOrgLabor, getOrgLabors, updateOrgLabor
 

Field Detail

orgLaborLocalService

@BeanReference(type=OrgLaborLocalService.class)
protected OrgLaborLocalService orgLaborLocalService

orgLaborService

@BeanReference(type=OrgLaborService.class)
protected OrgLaborService orgLaborService

orgLaborPersistence

@BeanReference(type=OrgLaborPersistence.class)
protected OrgLaborPersistence orgLaborPersistence

counterLocalService

@BeanReference(type=CounterLocalService.class)
protected CounterLocalService counterLocalService

listTypeLocalService

@BeanReference(type=ListTypeLocalService.class)
protected ListTypeLocalService listTypeLocalService

listTypeService

@BeanReference(type=ListTypeService.class)
protected ListTypeService listTypeService

listTypePersistence

@BeanReference(type=ListTypePersistence.class)
protected ListTypePersistence listTypePersistence
Constructor Detail

OrgLaborServiceBaseImpl

public OrgLaborServiceBaseImpl()
Method Detail

getOrgLaborLocalService

public OrgLaborLocalService getOrgLaborLocalService()
Returns the org labor local service.

Returns:
the org labor local service

setOrgLaborLocalService

public void setOrgLaborLocalService(OrgLaborLocalService orgLaborLocalService)
Sets the org labor local service.

Parameters:
orgLaborLocalService - the org labor local service

getOrgLaborService

public OrgLaborService getOrgLaborService()
Returns the org labor remote service.

Returns:
the org labor remote service

setOrgLaborService

public void setOrgLaborService(OrgLaborService orgLaborService)
Sets the org labor remote service.

Parameters:
orgLaborService - the org labor remote service

getOrgLaborPersistence

public OrgLaborPersistence getOrgLaborPersistence()
Returns the org labor persistence.

Returns:
the org labor persistence

setOrgLaborPersistence

public void setOrgLaborPersistence(OrgLaborPersistence orgLaborPersistence)
Sets the org labor persistence.

Parameters:
orgLaborPersistence - the org labor persistence

getCounterLocalService

public CounterLocalService getCounterLocalService()
Returns the counter local service.

Returns:
the counter local service

setCounterLocalService

public void setCounterLocalService(CounterLocalService counterLocalService)
Sets the counter local service.

Parameters:
counterLocalService - the counter local service

getListTypeLocalService

public ListTypeLocalService getListTypeLocalService()
Returns the list type local service.

Returns:
the list type local service

setListTypeLocalService

public void setListTypeLocalService(ListTypeLocalService listTypeLocalService)
Sets the list type local service.

Parameters:
listTypeLocalService - the list type local service

getListTypeService

public ListTypeService getListTypeService()
Returns the list type remote service.

Returns:
the list type remote service

setListTypeService

public void setListTypeService(ListTypeService listTypeService)
Sets the list type remote service.

Parameters:
listTypeService - the list type remote service

getListTypePersistence

public ListTypePersistence getListTypePersistence()
Returns the list type persistence.

Returns:
the list type persistence

setListTypePersistence

public void setListTypePersistence(ListTypePersistence listTypePersistence)
Sets the list type persistence.

Parameters:
listTypePersistence - the list type persistence

afterPropertiesSet

public void afterPropertiesSet()

destroy

public void destroy()

getOSGiServiceIdentifier

public String getOSGiServiceIdentifier()
Returns the OSGi service identifier.

Specified by:
getOSGiServiceIdentifier in interface IdentifiableOSGiService
Specified by:
getOSGiServiceIdentifier in interface OrgLaborService
Returns:
the OSGi service identifier

getModelClass

protected Class<?> getModelClass()

getModelClassName

protected String getModelClassName()

runSQL

protected void runSQL(String sql)
Performs a SQL query.

Parameters:
sql - the sql query

Liferay 7.0-ce-b4