Liferay 7.0-ce-m3

com.liferay.portal.service.base
Class QuartzLocalServiceBaseImpl

java.lang.Object
  extended by com.liferay.portal.service.BaseLocalServiceImpl
      extended by com.liferay.portal.service.base.QuartzLocalServiceBaseImpl
All Implemented Interfaces:
IdentifiableBean, BaseLocalService, QuartzLocalService
Direct Known Subclasses:
QuartzLocalServiceImpl

@ProviderType
public abstract class QuartzLocalServiceBaseImpl
extends BaseLocalServiceImpl
implements QuartzLocalService, IdentifiableBean

Provides the base implementation for the quartz 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 QuartzLocalServiceImpl.

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

Field Summary
protected  CounterLocalService counterLocalService
           
protected  QuartzLocalService quartzLocalService
           
 
Constructor Summary
QuartzLocalServiceBaseImpl()
           
 
Method Summary
 void afterPropertiesSet()
           
 void destroy()
           
 String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
 CounterLocalService getCounterLocalService()
          Returns the counter local service.
 QuartzLocalService getQuartzLocalService()
          Returns the quartz local service.
protected  void runSQL(String sql)
          Performs a SQL query.
 void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 void setCounterLocalService(CounterLocalService counterLocalService)
          Sets the counter local service.
 void setQuartzLocalService(QuartzLocalService quartzLocalService)
          Sets the quartz local service.
 
Methods inherited from class com.liferay.portal.service.BaseLocalServiceImpl
getClassLoader
 
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.QuartzLocalService
checkQuartzTables
 

Field Detail

quartzLocalService

@BeanReference(type=QuartzLocalService.class)
protected QuartzLocalService quartzLocalService

counterLocalService

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

QuartzLocalServiceBaseImpl

public QuartzLocalServiceBaseImpl()
Method Detail

getQuartzLocalService

public QuartzLocalService getQuartzLocalService()
Returns the quartz local service.

Returns:
the quartz local service

setQuartzLocalService

public void setQuartzLocalService(QuartzLocalService quartzLocalService)
Sets the quartz local service.

Parameters:
quartzLocalService - the quartz local service

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

afterPropertiesSet

public void afterPropertiesSet()

destroy

public void destroy()

getBeanIdentifier

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

Specified by:
getBeanIdentifier in interface IdentifiableBean
Specified by:
getBeanIdentifier in interface QuartzLocalService
Returns:
the Spring bean ID for this bean

setBeanIdentifier

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

Specified by:
setBeanIdentifier in interface IdentifiableBean
Specified by:
setBeanIdentifier in interface QuartzLocalService
Parameters:
beanIdentifier - the Spring bean ID for this bean

runSQL

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

Parameters:
sql - the sql query

Liferay 7.0-ce-m3