Liferay 7.0-ga1 portal-impl

com.liferay.portal.service.base
Class PortalLocalServiceBaseImpl

java.lang.Object
  extended by com.liferay.portal.kernel.service.BaseLocalServiceImpl
      extended by com.liferay.portal.service.base.PortalLocalServiceBaseImpl
All Implemented Interfaces:
com.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService, com.liferay.portal.kernel.service.BaseLocalService, com.liferay.portal.kernel.service.PortalLocalService
Direct Known Subclasses:
PortalLocalServiceImpl

@ProviderType
public abstract class PortalLocalServiceBaseImpl
extends com.liferay.portal.kernel.service.BaseLocalServiceImpl
implements com.liferay.portal.kernel.service.PortalLocalService, com.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService

Provides the base implementation for the portal 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 PortalLocalServiceImpl.

See Also:
PortalLocalServiceImpl, PortalLocalServiceUtil
{$generated.description}

Field Summary
protected  com.liferay.portal.kernel.service.ClassNameLocalService classNameLocalService
           
protected  com.liferay.portal.kernel.service.persistence.ClassNamePersistence classNamePersistence
           
protected  com.liferay.counter.kernel.service.CounterLocalService counterLocalService
           
protected  com.liferay.portal.kernel.service.PortalLocalService portalLocalService
           
 
Constructor Summary
PortalLocalServiceBaseImpl()
           
 
Method Summary
 void afterPropertiesSet()
           
 void destroy()
           
 com.liferay.portal.kernel.service.ClassNameLocalService getClassNameLocalService()
          Returns the class name local service.
 com.liferay.portal.kernel.service.persistence.ClassNamePersistence getClassNamePersistence()
          Returns the class name persistence.
 com.liferay.counter.kernel.service.CounterLocalService getCounterLocalService()
          Returns the counter local service.
 String getOSGiServiceIdentifier()
          Returns the OSGi service identifier.
 com.liferay.portal.kernel.service.PortalLocalService getPortalLocalService()
          Returns the portal local service.
protected  void runSQL(String sql)
          Performs a SQL query.
 void setClassNameLocalService(com.liferay.portal.kernel.service.ClassNameLocalService classNameLocalService)
          Sets the class name local service.
 void setClassNamePersistence(com.liferay.portal.kernel.service.persistence.ClassNamePersistence classNamePersistence)
          Sets the class name persistence.
 void setCounterLocalService(com.liferay.counter.kernel.service.CounterLocalService counterLocalService)
          Sets the counter local service.
 void setPortalLocalService(com.liferay.portal.kernel.service.PortalLocalService portalLocalService)
          Sets the portal local service.
 
Methods inherited from class com.liferay.portal.kernel.service.BaseLocalServiceImpl
getClassLoader, getLocalizationMap
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

portalLocalService

@BeanReference(type=com.liferay.portal.kernel.service.PortalLocalService.class)
protected com.liferay.portal.kernel.service.PortalLocalService portalLocalService

counterLocalService

@BeanReference(type=com.liferay.counter.kernel.service.CounterLocalService.class)
protected com.liferay.counter.kernel.service.CounterLocalService counterLocalService

classNameLocalService

@BeanReference(type=com.liferay.portal.kernel.service.ClassNameLocalService.class)
protected com.liferay.portal.kernel.service.ClassNameLocalService classNameLocalService

classNamePersistence

@BeanReference(type=com.liferay.portal.kernel.service.persistence.ClassNamePersistence.class)
protected com.liferay.portal.kernel.service.persistence.ClassNamePersistence classNamePersistence
Constructor Detail

PortalLocalServiceBaseImpl

public PortalLocalServiceBaseImpl()
Method Detail

getPortalLocalService

public com.liferay.portal.kernel.service.PortalLocalService getPortalLocalService()
Returns the portal local service.

Returns:
the portal local service

setPortalLocalService

public void setPortalLocalService(com.liferay.portal.kernel.service.PortalLocalService portalLocalService)
Sets the portal local service.

Parameters:
portalLocalService - the portal local service

getCounterLocalService

public com.liferay.counter.kernel.service.CounterLocalService getCounterLocalService()
Returns the counter local service.

Returns:
the counter local service

setCounterLocalService

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

Parameters:
counterLocalService - the counter local service

getClassNameLocalService

public com.liferay.portal.kernel.service.ClassNameLocalService getClassNameLocalService()
Returns the class name local service.

Returns:
the class name local service

setClassNameLocalService

public void setClassNameLocalService(com.liferay.portal.kernel.service.ClassNameLocalService classNameLocalService)
Sets the class name local service.

Parameters:
classNameLocalService - the class name local service

getClassNamePersistence

public com.liferay.portal.kernel.service.persistence.ClassNamePersistence getClassNamePersistence()
Returns the class name persistence.

Returns:
the class name persistence

setClassNamePersistence

public void setClassNamePersistence(com.liferay.portal.kernel.service.persistence.ClassNamePersistence classNamePersistence)
Sets the class name persistence.

Parameters:
classNamePersistence - the class name persistence

afterPropertiesSet

public void afterPropertiesSet()

destroy

public void destroy()

getOSGiServiceIdentifier

public String getOSGiServiceIdentifier()
Returns the OSGi service identifier.

Specified by:
getOSGiServiceIdentifier in interface com.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService
Specified by:
getOSGiServiceIdentifier in interface com.liferay.portal.kernel.service.PortalLocalService
Returns:
the OSGi service identifier

runSQL

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

Parameters:
sql - the sql query

Liferay 7.0-ga1 portal-impl