Liferay 7.0-ce-b4

com.liferay.portal.service.base
Class AddressServiceBaseImpl

java.lang.Object
  extended by com.liferay.portal.service.BaseServiceImpl
      extended by com.liferay.portal.service.base.AddressServiceBaseImpl
All Implemented Interfaces:
IdentifiableOSGiService, AddressService, BaseService
Direct Known Subclasses:
AddressServiceImpl

public abstract class AddressServiceBaseImpl
extends BaseServiceImpl
implements AddressService, IdentifiableOSGiService

Provides the base implementation for the address 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 AddressServiceImpl.

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

Field Summary
protected  AddressLocalService addressLocalService
           
protected  AddressPersistence addressPersistence
           
protected  AddressService addressService
           
protected  ClassNameLocalService classNameLocalService
           
protected  ClassNamePersistence classNamePersistence
           
protected  ClassNameService classNameService
           
protected  CounterLocalService counterLocalService
           
protected  CountryPersistence countryPersistence
           
protected  CountryService countryService
           
protected  ListTypeLocalService listTypeLocalService
           
protected  ListTypePersistence listTypePersistence
           
protected  ListTypeService listTypeService
           
protected  UserFinder userFinder
           
protected  UserLocalService userLocalService
           
protected  UserPersistence userPersistence
           
protected  UserService userService
           
 
Fields inherited from class com.liferay.portal.service.BaseServiceImpl
ANONYMOUS_NAMES, JRUN_ANONYMOUS, ORACLE_ANONYMOUS, SUN_ANONYMOUS, WEBLOGIC_ANONYMOUS
 
Constructor Summary
AddressServiceBaseImpl()
           
 
Method Summary
 void afterPropertiesSet()
           
 void destroy()
           
 AddressLocalService getAddressLocalService()
          Returns the address local service.
 AddressPersistence getAddressPersistence()
          Returns the address persistence.
 AddressService getAddressService()
          Returns the address remote service.
 ClassNameLocalService getClassNameLocalService()
          Returns the class name local service.
 ClassNamePersistence getClassNamePersistence()
          Returns the class name persistence.
 ClassNameService getClassNameService()
          Returns the class name remote service.
 CounterLocalService getCounterLocalService()
          Returns the counter local service.
 CountryPersistence getCountryPersistence()
          Returns the country persistence.
 CountryService getCountryService()
          Returns the country remote service.
 ListTypeLocalService getListTypeLocalService()
          Returns the list type local service.
 ListTypePersistence getListTypePersistence()
          Returns the list type persistence.
 ListTypeService getListTypeService()
          Returns the list type remote service.
protected  Class<?> getModelClass()
           
protected  String getModelClassName()
           
 String getOSGiServiceIdentifier()
          Returns the OSGi service identifier.
 UserFinder getUserFinder()
          Returns the user finder.
 UserLocalService getUserLocalService()
          Returns the user local service.
 UserPersistence getUserPersistence()
          Returns the user persistence.
 UserService getUserService()
          Returns the user remote service.
protected  void runSQL(String sql)
          Performs a SQL query.
 void setAddressLocalService(AddressLocalService addressLocalService)
          Sets the address local service.
 void setAddressPersistence(AddressPersistence addressPersistence)
          Sets the address persistence.
 void setAddressService(AddressService addressService)
          Sets the address remote service.
 void setClassNameLocalService(ClassNameLocalService classNameLocalService)
          Sets the class name local service.
 void setClassNamePersistence(ClassNamePersistence classNamePersistence)
          Sets the class name persistence.
 void setClassNameService(ClassNameService classNameService)
          Sets the class name remote service.
 void setCounterLocalService(CounterLocalService counterLocalService)
          Sets the counter local service.
 void setCountryPersistence(CountryPersistence countryPersistence)
          Sets the country persistence.
 void setCountryService(CountryService countryService)
          Sets the country remote service.
 void setListTypeLocalService(ListTypeLocalService listTypeLocalService)
          Sets the list type local service.
 void setListTypePersistence(ListTypePersistence listTypePersistence)
          Sets the list type persistence.
 void setListTypeService(ListTypeService listTypeService)
          Sets the list type remote service.
 void setUserFinder(UserFinder userFinder)
          Sets the user finder.
 void setUserLocalService(UserLocalService userLocalService)
          Sets the user local service.
 void setUserPersistence(UserPersistence userPersistence)
          Sets the user persistence.
 void setUserService(UserService userService)
          Sets the user remote service.
 
Methods inherited from class com.liferay.portal.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.service.AddressService
addAddress, deleteAddress, getAddress, getAddresses, updateAddress
 

Field Detail

addressLocalService

@BeanReference(type=AddressLocalService.class)
protected AddressLocalService addressLocalService

addressService

@BeanReference(type=AddressService.class)
protected AddressService addressService

addressPersistence

@BeanReference(type=AddressPersistence.class)
protected AddressPersistence addressPersistence

counterLocalService

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

classNameLocalService

@BeanReference(type=ClassNameLocalService.class)
protected ClassNameLocalService classNameLocalService

classNameService

@BeanReference(type=ClassNameService.class)
protected ClassNameService classNameService

classNamePersistence

@BeanReference(type=ClassNamePersistence.class)
protected ClassNamePersistence classNamePersistence

countryService

@BeanReference(type=CountryService.class)
protected CountryService countryService

countryPersistence

@BeanReference(type=CountryPersistence.class)
protected CountryPersistence countryPersistence

listTypeLocalService

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

listTypeService

@BeanReference(type=ListTypeService.class)
protected ListTypeService listTypeService

listTypePersistence

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

userLocalService

@BeanReference(type=UserLocalService.class)
protected UserLocalService userLocalService

userService

@BeanReference(type=UserService.class)
protected UserService userService

userPersistence

@BeanReference(type=UserPersistence.class)
protected UserPersistence userPersistence

userFinder

@BeanReference(type=UserFinder.class)
protected UserFinder userFinder
Constructor Detail

AddressServiceBaseImpl

public AddressServiceBaseImpl()
Method Detail

getAddressLocalService

public AddressLocalService getAddressLocalService()
Returns the address local service.

Returns:
the address local service

setAddressLocalService

public void setAddressLocalService(AddressLocalService addressLocalService)
Sets the address local service.

Parameters:
addressLocalService - the address local service

getAddressService

public AddressService getAddressService()
Returns the address remote service.

Returns:
the address remote service

setAddressService

public void setAddressService(AddressService addressService)
Sets the address remote service.

Parameters:
addressService - the address remote service

getAddressPersistence

public AddressPersistence getAddressPersistence()
Returns the address persistence.

Returns:
the address persistence

setAddressPersistence

public void setAddressPersistence(AddressPersistence addressPersistence)
Sets the address persistence.

Parameters:
addressPersistence - the address 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

getClassNameLocalService

public ClassNameLocalService getClassNameLocalService()
Returns the class name local service.

Returns:
the class name local service

setClassNameLocalService

public void setClassNameLocalService(ClassNameLocalService classNameLocalService)
Sets the class name local service.

Parameters:
classNameLocalService - the class name local service

getClassNameService

public ClassNameService getClassNameService()
Returns the class name remote service.

Returns:
the class name remote service

setClassNameService

public void setClassNameService(ClassNameService classNameService)
Sets the class name remote service.

Parameters:
classNameService - the class name remote service

getClassNamePersistence

public ClassNamePersistence getClassNamePersistence()
Returns the class name persistence.

Returns:
the class name persistence

setClassNamePersistence

public void setClassNamePersistence(ClassNamePersistence classNamePersistence)
Sets the class name persistence.

Parameters:
classNamePersistence - the class name persistence

getCountryService

public CountryService getCountryService()
Returns the country remote service.

Returns:
the country remote service

setCountryService

public void setCountryService(CountryService countryService)
Sets the country remote service.

Parameters:
countryService - the country remote service

getCountryPersistence

public CountryPersistence getCountryPersistence()
Returns the country persistence.

Returns:
the country persistence

setCountryPersistence

public void setCountryPersistence(CountryPersistence countryPersistence)
Sets the country persistence.

Parameters:
countryPersistence - the country persistence

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

getListTypeService

public ListTypeService getListTypeService()
Returns the list type remote service.

Returns:
the list type remote service

setListTypeService

public void setListTypeService(ListTypeService listTypeService)
Sets the list type remote service.

Parameters:
listTypeService - the list type remote 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

getUserLocalService

public UserLocalService getUserLocalService()
Returns the user local service.

Returns:
the user local service

setUserLocalService

public void setUserLocalService(UserLocalService userLocalService)
Sets the user local service.

Parameters:
userLocalService - the user local service

getUserService

public UserService getUserService()
Returns the user remote service.

Returns:
the user remote service

setUserService

public void setUserService(UserService userService)
Sets the user remote service.

Parameters:
userService - the user remote service

getUserPersistence

public UserPersistence getUserPersistence()
Returns the user persistence.

Returns:
the user persistence

setUserPersistence

public void setUserPersistence(UserPersistence userPersistence)
Sets the user persistence.

Parameters:
userPersistence - the user persistence

getUserFinder

public UserFinder getUserFinder()
Returns the user finder.

Returns:
the user finder

setUserFinder

public void setUserFinder(UserFinder userFinder)
Sets the user finder.

Parameters:
userFinder - the user finder

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