Liferay 7.0-ce-b4

com.liferay.portal.service.base
Class OrgLaborLocalServiceBaseImpl

java.lang.Object
  extended by com.liferay.portal.service.BaseLocalServiceImpl
      extended by com.liferay.portal.service.base.OrgLaborLocalServiceBaseImpl
All Implemented Interfaces:
IdentifiableOSGiService, BaseLocalService, OrgLaborLocalService, PersistedModelLocalService
Direct Known Subclasses:
OrgLaborLocalServiceImpl

@ProviderType
public abstract class OrgLaborLocalServiceBaseImpl
extends BaseLocalServiceImpl
implements OrgLaborLocalService, IdentifiableOSGiService

Provides the base implementation for the org labor local service.

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

See Also:
OrgLaborLocalServiceImpl, OrgLaborLocalServiceUtil
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  OrgLaborLocalService orgLaborLocalService
           
protected  OrgLaborPersistence orgLaborPersistence
           
protected  PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry
           
 
Constructor Summary
OrgLaborLocalServiceBaseImpl()
           
 
Method Summary
 OrgLabor addOrgLabor(OrgLabor orgLabor)
          Adds the org labor to the database.
 void afterPropertiesSet()
           
 OrgLabor createOrgLabor(long orgLaborId)
          Creates a new org labor with the primary key.
 OrgLabor deleteOrgLabor(long orgLaborId)
          Deletes the org labor with the primary key from the database.
 OrgLabor deleteOrgLabor(OrgLabor orgLabor)
          Deletes the org labor from the database.
 PersistedModel deletePersistedModel(PersistedModel persistedModel)
           
 void destroy()
           
 DynamicQuery dynamicQuery()
           
<T> List<T>
dynamicQuery(DynamicQuery dynamicQuery)
          Performs a dynamic query on the database and returns the matching rows.
<T> List<T>
dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
          Performs a dynamic query on the database and returns a range of the matching rows.
<T> List<T>
dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<T> orderByComparator)
          Performs a dynamic query on the database and returns an ordered range of the matching rows.
 long dynamicQueryCount(DynamicQuery dynamicQuery)
          Returns the number of rows matching the dynamic query.
 long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
          Returns the number of rows matching the dynamic query.
 OrgLabor fetchOrgLabor(long orgLaborId)
           
 ActionableDynamicQuery getActionableDynamicQuery()
           
 CounterLocalService getCounterLocalService()
          Returns the counter local service.
 IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
           
 ListTypeLocalService getListTypeLocalService()
          Returns the list type local service.
 ListTypePersistence getListTypePersistence()
          Returns the list type persistence.
protected  Class<?> getModelClass()
           
protected  String getModelClassName()
           
 OrgLabor getOrgLabor(long orgLaborId)
          Returns the org labor with the primary key.
 OrgLaborLocalService getOrgLaborLocalService()
          Returns the org labor local service.
 OrgLaborPersistence getOrgLaborPersistence()
          Returns the org labor persistence.
 List<OrgLabor> getOrgLabors(int start, int end)
          Returns a range of all the org labors.
 int getOrgLaborsCount()
          Returns the number of org labors.
 String getOSGiServiceIdentifier()
          Returns the OSGi service identifier.
 PersistedModel getPersistedModel(Serializable primaryKeyObj)
           
protected  void initActionableDynamicQuery(ActionableDynamicQuery actionableDynamicQuery)
           
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 setOrgLaborLocalService(OrgLaborLocalService orgLaborLocalService)
          Sets the org labor local service.
 void setOrgLaborPersistence(OrgLaborPersistence orgLaborPersistence)
          Sets the org labor persistence.
 OrgLabor updateOrgLabor(OrgLabor orgLabor)
          Updates the org labor in the database or adds it if it does not yet exist.
 
Methods inherited from class com.liferay.portal.service.BaseLocalServiceImpl
getClassLoader, getLocalizationMap
 
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.OrgLaborLocalService
addOrgLabor, getOrgLabors, updateOrgLabor
 

Field Detail

orgLaborLocalService

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

orgLaborPersistence

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

counterLocalService

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

listTypeLocalService

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

listTypePersistence

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

persistedModelLocalServiceRegistry

@BeanReference(type=PersistedModelLocalServiceRegistry.class)
protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry
Constructor Detail

OrgLaborLocalServiceBaseImpl

public OrgLaborLocalServiceBaseImpl()
Method Detail

addOrgLabor

@Indexable(type=REINDEX)
public OrgLabor addOrgLabor(OrgLabor orgLabor)
Adds the org labor to the database. Also notifies the appropriate model listeners.

Specified by:
addOrgLabor in interface OrgLaborLocalService
Parameters:
orgLabor - the org labor
Returns:
the org labor that was added

createOrgLabor

public OrgLabor createOrgLabor(long orgLaborId)
Creates a new org labor with the primary key. Does not add the org labor to the database.

Specified by:
createOrgLabor in interface OrgLaborLocalService
Parameters:
orgLaborId - the primary key for the new org labor
Returns:
the new org labor

deleteOrgLabor

@Indexable(type=DELETE)
public OrgLabor deleteOrgLabor(long orgLaborId)
                        throws PortalException
Deletes the org labor with the primary key from the database. Also notifies the appropriate model listeners.

Specified by:
deleteOrgLabor in interface OrgLaborLocalService
Parameters:
orgLaborId - the primary key of the org labor
Returns:
the org labor that was removed
Throws:
PortalException - if a org labor with the primary key could not be found

deleteOrgLabor

@Indexable(type=DELETE)
public OrgLabor deleteOrgLabor(OrgLabor orgLabor)
Deletes the org labor from the database. Also notifies the appropriate model listeners.

Specified by:
deleteOrgLabor in interface OrgLaborLocalService
Parameters:
orgLabor - the org labor
Returns:
the org labor that was removed

dynamicQuery

public DynamicQuery dynamicQuery()
Specified by:
dynamicQuery in interface OrgLaborLocalService

dynamicQuery

public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows.

Specified by:
dynamicQuery in interface OrgLaborLocalService
Parameters:
dynamicQuery - the dynamic query
Returns:
the matching rows

dynamicQuery

public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery,
                                int start,
                                int end)
Performs a dynamic query on the database and returns a range of the matching rows.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from OrgLaborModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Specified by:
dynamicQuery in interface OrgLaborLocalService
Parameters:
dynamicQuery - the dynamic query
start - the lower bound of the range of model instances
end - the upper bound of the range of model instances (not inclusive)
Returns:
the range of matching rows

dynamicQuery

public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery,
                                int start,
                                int end,
                                OrderByComparator<T> orderByComparator)
Performs a dynamic query on the database and returns an ordered range of the matching rows.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from OrgLaborModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Specified by:
dynamicQuery in interface OrgLaborLocalService
Parameters:
dynamicQuery - the dynamic query
start - the lower bound of the range of model instances
end - the upper bound of the range of model instances (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching rows

dynamicQueryCount

public long dynamicQueryCount(DynamicQuery dynamicQuery)
Returns the number of rows matching the dynamic query.

Specified by:
dynamicQueryCount in interface OrgLaborLocalService
Parameters:
dynamicQuery - the dynamic query
Returns:
the number of rows matching the dynamic query

dynamicQueryCount

public long dynamicQueryCount(DynamicQuery dynamicQuery,
                              Projection projection)
Returns the number of rows matching the dynamic query.

Specified by:
dynamicQueryCount in interface OrgLaborLocalService
Parameters:
dynamicQuery - the dynamic query
projection - the projection to apply to the query
Returns:
the number of rows matching the dynamic query

fetchOrgLabor

public OrgLabor fetchOrgLabor(long orgLaborId)
Specified by:
fetchOrgLabor in interface OrgLaborLocalService

getOrgLabor

public OrgLabor getOrgLabor(long orgLaborId)
                     throws PortalException
Returns the org labor with the primary key.

Specified by:
getOrgLabor in interface OrgLaborLocalService
Parameters:
orgLaborId - the primary key of the org labor
Returns:
the org labor
Throws:
PortalException - if a org labor with the primary key could not be found

getActionableDynamicQuery

public ActionableDynamicQuery getActionableDynamicQuery()
Specified by:
getActionableDynamicQuery in interface OrgLaborLocalService

getIndexableActionableDynamicQuery

public IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
Specified by:
getIndexableActionableDynamicQuery in interface OrgLaborLocalService

initActionableDynamicQuery

protected void initActionableDynamicQuery(ActionableDynamicQuery actionableDynamicQuery)

deletePersistedModel

public PersistedModel deletePersistedModel(PersistedModel persistedModel)
                                    throws PortalException
Specified by:
deletePersistedModel in interface OrgLaborLocalService
Specified by:
deletePersistedModel in interface PersistedModelLocalService
Throws:
PortalException

getPersistedModel

public PersistedModel getPersistedModel(Serializable primaryKeyObj)
                                 throws PortalException
Specified by:
getPersistedModel in interface OrgLaborLocalService
Specified by:
getPersistedModel in interface PersistedModelLocalService
Throws:
PortalException

getOrgLabors

public List<OrgLabor> getOrgLabors(int start,
                                   int end)
Returns a range of all the org labors.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from OrgLaborModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Specified by:
getOrgLabors in interface OrgLaborLocalService
Parameters:
start - the lower bound of the range of org labors
end - the upper bound of the range of org labors (not inclusive)
Returns:
the range of org labors

getOrgLaborsCount

public int getOrgLaborsCount()
Returns the number of org labors.

Specified by:
getOrgLaborsCount in interface OrgLaborLocalService
Returns:
the number of org labors

updateOrgLabor

@Indexable(type=REINDEX)
public OrgLabor updateOrgLabor(OrgLabor orgLabor)
Updates the org labor in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.

Specified by:
updateOrgLabor in interface OrgLaborLocalService
Parameters:
orgLabor - the org labor
Returns:
the org labor that was updated

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

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

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 OrgLaborLocalService
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