Liferay 7.0-ce-m6

com.liferay.portlet.mobiledevicerules.service.base
Class MDRRuleServiceBaseImpl

java.lang.Object
  extended by com.liferay.portal.service.BaseServiceImpl
      extended by com.liferay.portlet.mobiledevicerules.service.base.MDRRuleServiceBaseImpl
All Implemented Interfaces:
IdentifiableBean, BaseService, MDRRuleService
Direct Known Subclasses:
MDRRuleServiceImpl

public abstract class MDRRuleServiceBaseImpl
extends BaseServiceImpl
implements MDRRuleService, IdentifiableBean

Provides the base implementation for the m d r rule 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 MDRRuleServiceImpl.

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

Field Summary
protected  CounterLocalService counterLocalService
           
protected  MDRRuleGroupFinder mdrRuleGroupFinder
           
protected  MDRRuleGroupLocalService mdrRuleGroupLocalService
           
protected  MDRRuleGroupPersistence mdrRuleGroupPersistence
           
protected  MDRRuleGroupService mdrRuleGroupService
           
protected  MDRRuleLocalService mdrRuleLocalService
           
protected  MDRRulePersistence mdrRulePersistence
           
protected  MDRRuleService mdrRuleService
           
protected  SystemEventLocalService systemEventLocalService
           
protected  SystemEventPersistence systemEventPersistence
           
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
MDRRuleServiceBaseImpl()
           
 
Method Summary
 void afterPropertiesSet()
           
 void destroy()
           
 String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
 CounterLocalService getCounterLocalService()
          Returns the counter local service.
 MDRRuleGroupFinder getMDRRuleGroupFinder()
          Returns the m d r rule group finder.
 MDRRuleGroupLocalService getMDRRuleGroupLocalService()
          Returns the m d r rule group local service.
 MDRRuleGroupPersistence getMDRRuleGroupPersistence()
          Returns the m d r rule group persistence.
 MDRRuleGroupService getMDRRuleGroupService()
          Returns the m d r rule group remote service.
 MDRRuleLocalService getMDRRuleLocalService()
          Returns the m d r rule local service.
 MDRRulePersistence getMDRRulePersistence()
          Returns the m d r rule persistence.
 MDRRuleService getMDRRuleService()
          Returns the m d r rule remote service.
protected  Class<?> getModelClass()
           
protected  String getModelClassName()
           
 SystemEventLocalService getSystemEventLocalService()
          Returns the system event local service.
 SystemEventPersistence getSystemEventPersistence()
          Returns the system event persistence.
 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 setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 void setCounterLocalService(CounterLocalService counterLocalService)
          Sets the counter local service.
 void setMDRRuleGroupFinder(MDRRuleGroupFinder mdrRuleGroupFinder)
          Sets the m d r rule group finder.
 void setMDRRuleGroupLocalService(MDRRuleGroupLocalService mdrRuleGroupLocalService)
          Sets the m d r rule group local service.
 void setMDRRuleGroupPersistence(MDRRuleGroupPersistence mdrRuleGroupPersistence)
          Sets the m d r rule group persistence.
 void setMDRRuleGroupService(MDRRuleGroupService mdrRuleGroupService)
          Sets the m d r rule group remote service.
 void setMDRRuleLocalService(MDRRuleLocalService mdrRuleLocalService)
          Sets the m d r rule local service.
 void setMDRRulePersistence(MDRRulePersistence mdrRulePersistence)
          Sets the m d r rule persistence.
 void setMDRRuleService(MDRRuleService mdrRuleService)
          Sets the m d r rule remote service.
 void setSystemEventLocalService(SystemEventLocalService systemEventLocalService)
          Sets the system event local service.
 void setSystemEventPersistence(SystemEventPersistence systemEventPersistence)
          Sets the system event persistence.
 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.portlet.mobiledevicerules.service.MDRRuleService
addRule, addRule, deleteRule, fetchRule, getRule, updateRule, updateRule
 

Field Detail

mdrRuleLocalService

@BeanReference(type=MDRRuleLocalService.class)
protected MDRRuleLocalService mdrRuleLocalService

mdrRuleService

@BeanReference(type=MDRRuleService.class)
protected MDRRuleService mdrRuleService

mdrRulePersistence

@BeanReference(type=MDRRulePersistence.class)
protected MDRRulePersistence mdrRulePersistence

counterLocalService

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

systemEventLocalService

@BeanReference(type=SystemEventLocalService.class)
protected SystemEventLocalService systemEventLocalService

systemEventPersistence

@BeanReference(type=SystemEventPersistence.class)
protected SystemEventPersistence systemEventPersistence

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

mdrRuleGroupLocalService

@BeanReference(type=MDRRuleGroupLocalService.class)
protected MDRRuleGroupLocalService mdrRuleGroupLocalService

mdrRuleGroupService

@BeanReference(type=MDRRuleGroupService.class)
protected MDRRuleGroupService mdrRuleGroupService

mdrRuleGroupPersistence

@BeanReference(type=MDRRuleGroupPersistence.class)
protected MDRRuleGroupPersistence mdrRuleGroupPersistence

mdrRuleGroupFinder

@BeanReference(type=MDRRuleGroupFinder.class)
protected MDRRuleGroupFinder mdrRuleGroupFinder
Constructor Detail

MDRRuleServiceBaseImpl

public MDRRuleServiceBaseImpl()
Method Detail

getMDRRuleLocalService

public MDRRuleLocalService getMDRRuleLocalService()
Returns the m d r rule local service.

Returns:
the m d r rule local service

setMDRRuleLocalService

public void setMDRRuleLocalService(MDRRuleLocalService mdrRuleLocalService)
Sets the m d r rule local service.

Parameters:
mdrRuleLocalService - the m d r rule local service

getMDRRuleService

public MDRRuleService getMDRRuleService()
Returns the m d r rule remote service.

Returns:
the m d r rule remote service

setMDRRuleService

public void setMDRRuleService(MDRRuleService mdrRuleService)
Sets the m d r rule remote service.

Parameters:
mdrRuleService - the m d r rule remote service

getMDRRulePersistence

public MDRRulePersistence getMDRRulePersistence()
Returns the m d r rule persistence.

Returns:
the m d r rule persistence

setMDRRulePersistence

public void setMDRRulePersistence(MDRRulePersistence mdrRulePersistence)
Sets the m d r rule persistence.

Parameters:
mdrRulePersistence - the m d r rule 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

getSystemEventLocalService

public SystemEventLocalService getSystemEventLocalService()
Returns the system event local service.

Returns:
the system event local service

setSystemEventLocalService

public void setSystemEventLocalService(SystemEventLocalService systemEventLocalService)
Sets the system event local service.

Parameters:
systemEventLocalService - the system event local service

getSystemEventPersistence

public SystemEventPersistence getSystemEventPersistence()
Returns the system event persistence.

Returns:
the system event persistence

setSystemEventPersistence

public void setSystemEventPersistence(SystemEventPersistence systemEventPersistence)
Sets the system event persistence.

Parameters:
systemEventPersistence - the system event 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

getMDRRuleGroupLocalService

public MDRRuleGroupLocalService getMDRRuleGroupLocalService()
Returns the m d r rule group local service.

Returns:
the m d r rule group local service

setMDRRuleGroupLocalService

public void setMDRRuleGroupLocalService(MDRRuleGroupLocalService mdrRuleGroupLocalService)
Sets the m d r rule group local service.

Parameters:
mdrRuleGroupLocalService - the m d r rule group local service

getMDRRuleGroupService

public MDRRuleGroupService getMDRRuleGroupService()
Returns the m d r rule group remote service.

Returns:
the m d r rule group remote service

setMDRRuleGroupService

public void setMDRRuleGroupService(MDRRuleGroupService mdrRuleGroupService)
Sets the m d r rule group remote service.

Parameters:
mdrRuleGroupService - the m d r rule group remote service

getMDRRuleGroupPersistence

public MDRRuleGroupPersistence getMDRRuleGroupPersistence()
Returns the m d r rule group persistence.

Returns:
the m d r rule group persistence

setMDRRuleGroupPersistence

public void setMDRRuleGroupPersistence(MDRRuleGroupPersistence mdrRuleGroupPersistence)
Sets the m d r rule group persistence.

Parameters:
mdrRuleGroupPersistence - the m d r rule group persistence

getMDRRuleGroupFinder

public MDRRuleGroupFinder getMDRRuleGroupFinder()
Returns the m d r rule group finder.

Returns:
the m d r rule group finder

setMDRRuleGroupFinder

public void setMDRRuleGroupFinder(MDRRuleGroupFinder mdrRuleGroupFinder)
Sets the m d r rule group finder.

Parameters:
mdrRuleGroupFinder - the m d r rule group finder

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 MDRRuleService
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 MDRRuleService
Parameters:
beanIdentifier - the Spring bean ID for this bean

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