Liferay 7.0-ce-b7 portal-impl

com.liferay.portal.service.base
Class RegionServiceBaseImpl

java.lang.Object
  extended by com.liferay.portal.kernel.service.BaseServiceImpl
      extended by com.liferay.portal.service.base.RegionServiceBaseImpl
All Implemented Interfaces:
com.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService, com.liferay.portal.kernel.service.BaseService, com.liferay.portal.kernel.service.RegionService
Direct Known Subclasses:
RegionServiceImpl

public abstract class RegionServiceBaseImpl
extends com.liferay.portal.kernel.service.BaseServiceImpl
implements com.liferay.portal.kernel.service.RegionService, com.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService

Provides the base implementation for the region 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 RegionServiceImpl.

See Also:
RegionServiceImpl, RegionServiceUtil
{$generated.description}

Field Summary
protected  com.liferay.counter.kernel.service.CounterLocalService counterLocalService
           
protected  com.liferay.portal.kernel.service.persistence.CountryPersistence countryPersistence
           
protected  com.liferay.portal.kernel.service.CountryService countryService
           
protected  com.liferay.portal.kernel.service.persistence.RegionPersistence regionPersistence
           
protected  com.liferay.portal.kernel.service.RegionService regionService
           
 
Fields inherited from class com.liferay.portal.kernel.service.BaseServiceImpl
ANONYMOUS_NAMES, JRUN_ANONYMOUS, ORACLE_ANONYMOUS, SUN_ANONYMOUS, WEBLOGIC_ANONYMOUS
 
Constructor Summary
RegionServiceBaseImpl()
           
 
Method Summary
 void afterPropertiesSet()
           
 void destroy()
           
 com.liferay.counter.kernel.service.CounterLocalService getCounterLocalService()
          Returns the counter local service.
 com.liferay.portal.kernel.service.persistence.CountryPersistence getCountryPersistence()
          Returns the country persistence.
 com.liferay.portal.kernel.service.CountryService getCountryService()
          Returns the country remote service.
protected  Class<?> getModelClass()
           
protected  String getModelClassName()
           
 String getOSGiServiceIdentifier()
          Returns the OSGi service identifier.
 com.liferay.portal.kernel.service.persistence.RegionPersistence getRegionPersistence()
          Returns the region persistence.
 com.liferay.portal.kernel.service.RegionService getRegionService()
          Returns the region remote service.
protected  void runSQL(String sql)
          Performs a SQL query.
 void setCounterLocalService(com.liferay.counter.kernel.service.CounterLocalService counterLocalService)
          Sets the counter local service.
 void setCountryPersistence(com.liferay.portal.kernel.service.persistence.CountryPersistence countryPersistence)
          Sets the country persistence.
 void setCountryService(com.liferay.portal.kernel.service.CountryService countryService)
          Sets the country remote service.
 void setRegionPersistence(com.liferay.portal.kernel.service.persistence.RegionPersistence regionPersistence)
          Sets the region persistence.
 void setRegionService(com.liferay.portal.kernel.service.RegionService regionService)
          Sets the region remote service.
 
Methods inherited from class com.liferay.portal.kernel.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.kernel.service.RegionService
addRegion, fetchRegion, fetchRegion, getRegion, getRegion, getRegions, getRegions, getRegions, getRegions
 

Field Detail

regionService

@BeanReference(type=com.liferay.portal.kernel.service.RegionService.class)
protected com.liferay.portal.kernel.service.RegionService regionService

regionPersistence

@BeanReference(type=com.liferay.portal.kernel.service.persistence.RegionPersistence.class)
protected com.liferay.portal.kernel.service.persistence.RegionPersistence regionPersistence

counterLocalService

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

countryService

@BeanReference(type=com.liferay.portal.kernel.service.CountryService.class)
protected com.liferay.portal.kernel.service.CountryService countryService

countryPersistence

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

RegionServiceBaseImpl

public RegionServiceBaseImpl()
Method Detail

getRegionService

public com.liferay.portal.kernel.service.RegionService getRegionService()
Returns the region remote service.

Returns:
the region remote service

setRegionService

public void setRegionService(com.liferay.portal.kernel.service.RegionService regionService)
Sets the region remote service.

Parameters:
regionService - the region remote service

getRegionPersistence

public com.liferay.portal.kernel.service.persistence.RegionPersistence getRegionPersistence()
Returns the region persistence.

Returns:
the region persistence

setRegionPersistence

public void setRegionPersistence(com.liferay.portal.kernel.service.persistence.RegionPersistence regionPersistence)
Sets the region persistence.

Parameters:
regionPersistence - the region persistence

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

getCountryService

public com.liferay.portal.kernel.service.CountryService getCountryService()
Returns the country remote service.

Returns:
the country remote service

setCountryService

public void setCountryService(com.liferay.portal.kernel.service.CountryService countryService)
Sets the country remote service.

Parameters:
countryService - the country remote service

getCountryPersistence

public com.liferay.portal.kernel.service.persistence.CountryPersistence getCountryPersistence()
Returns the country persistence.

Returns:
the country persistence

setCountryPersistence

public void setCountryPersistence(com.liferay.portal.kernel.service.persistence.CountryPersistence countryPersistence)
Sets the country persistence.

Parameters:
countryPersistence - the country 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.RegionService
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-b7 portal-impl