Package com.liferay.portal.service.base
Class CountryServiceBaseImpl
Object
com.liferay.portal.kernel.service.BaseServiceImpl
com.liferay.portal.service.base.CountryServiceBaseImpl
- All Implemented Interfaces:
com.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService
,com.liferay.portal.kernel.service.BaseService
,com.liferay.portal.kernel.service.CountryService
- Direct Known Subclasses:
CountryServiceImpl
public abstract class CountryServiceBaseImpl
extends com.liferay.portal.kernel.service.BaseServiceImpl
implements com.liferay.portal.kernel.service.CountryService, com.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService
Provides the base implementation for the country 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 CountryServiceImpl
.
- Author:
- Brian Wing Shun Chan
- See Also:
- {$generated.description}
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected com.liferay.counter.kernel.service.CounterLocalService
protected com.liferay.portal.kernel.service.persistence.CountryLocalizationPersistence
protected com.liferay.portal.kernel.service.CountryLocalService
protected com.liferay.portal.kernel.service.persistence.CountryPersistence
protected com.liferay.portal.kernel.service.CountryService
Fields inherited from class com.liferay.portal.kernel.service.BaseServiceImpl
ANONYMOUS_NAMES, JRUN_ANONYMOUS, ORACLE_ANONYMOUS, SUN_ANONYMOUS, WEBLOGIC_ANONYMOUS
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
void
destroy()
com.liferay.counter.kernel.service.CounterLocalService
Returns the counter local service.com.liferay.portal.kernel.service.persistence.CountryLocalizationPersistence
Returns the country localization persistence.com.liferay.portal.kernel.service.CountryLocalService
Returns the country local service.com.liferay.portal.kernel.service.persistence.CountryPersistence
Returns the country persistence.com.liferay.portal.kernel.service.CountryService
Returns the country remote service.protected Class<?>
protected String
Returns the OSGi service identifier.protected void
Performs a SQL query.void
setCounterLocalService
(com.liferay.counter.kernel.service.CounterLocalService counterLocalService) Sets the counter local service.void
setCountryLocalizationPersistence
(com.liferay.portal.kernel.service.persistence.CountryLocalizationPersistence countryLocalizationPersistence) Sets the country localization persistence.void
setCountryLocalService
(com.liferay.portal.kernel.service.CountryLocalService countryLocalService) Sets the country 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.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.CountryService
addCountry, addCountry, deleteCountry, fetchCountry, fetchCountryByA2, fetchCountryByA2, fetchCountryByA3, fetchCountryByA3, getCompanyCountries, getCompanyCountries, getCompanyCountries, getCompanyCountries, getCompanyCountriesCount, getCompanyCountriesCount, getCountries, getCountries, getCountry, getCountryByA2, getCountryByA2, getCountryByA3, getCountryByA3, getCountryByName, getCountryByName, getCountryByNumber, searchCountries, updateActive, updateCountry, updateGroupFilterEnabled
-
Field Details
-
countryLocalService
@BeanReference(type=com.liferay.portal.kernel.service.CountryLocalService.class) protected com.liferay.portal.kernel.service.CountryLocalService countryLocalService -
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 -
counterLocalService
@BeanReference(type=com.liferay.counter.kernel.service.CounterLocalService.class) protected com.liferay.counter.kernel.service.CounterLocalService counterLocalService -
countryLocalizationPersistence
@BeanReference(type=com.liferay.portal.kernel.service.persistence.CountryLocalizationPersistence.class) protected com.liferay.portal.kernel.service.persistence.CountryLocalizationPersistence countryLocalizationPersistence
-
-
Constructor Details
-
CountryServiceBaseImpl
public CountryServiceBaseImpl()
-
-
Method Details
-
getCountryLocalService
public com.liferay.portal.kernel.service.CountryLocalService getCountryLocalService()Returns the country local service.- Returns:
- the country local service
-
setCountryLocalService
public void setCountryLocalService(com.liferay.portal.kernel.service.CountryLocalService countryLocalService) Sets the country local service.- Parameters:
countryLocalService
- the country 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
-
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
-
getCountryLocalizationPersistence
public com.liferay.portal.kernel.service.persistence.CountryLocalizationPersistence getCountryLocalizationPersistence()Returns the country localization persistence.- Returns:
- the country localization persistence
-
setCountryLocalizationPersistence
public void setCountryLocalizationPersistence(com.liferay.portal.kernel.service.persistence.CountryLocalizationPersistence countryLocalizationPersistence) Sets the country localization persistence.- Parameters:
countryLocalizationPersistence
- the country localization persistence
-
afterPropertiesSet
public void afterPropertiesSet() -
destroy
public void destroy() -
getOSGiServiceIdentifier
Returns the OSGi service identifier.- Specified by:
getOSGiServiceIdentifier
in interfacecom.liferay.portal.kernel.service.CountryService
- Specified by:
getOSGiServiceIdentifier
in interfacecom.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService
- Returns:
- the OSGi service identifier
-
getModelClass
-
getModelClassName
-
runSQL
Performs a SQL query.- Parameters:
sql
- the sql query
-