Liferay 7.0-ce-b4

com.liferay.portal.service.base
Class LayoutBranchServiceBaseImpl

java.lang.Object
  extended by com.liferay.portal.service.BaseServiceImpl
      extended by com.liferay.portal.service.base.LayoutBranchServiceBaseImpl
All Implemented Interfaces:
IdentifiableOSGiService, BaseService, LayoutBranchService
Direct Known Subclasses:
LayoutBranchServiceImpl

public abstract class LayoutBranchServiceBaseImpl
extends BaseServiceImpl
implements LayoutBranchService, IdentifiableOSGiService

Provides the base implementation for the layout branch 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 LayoutBranchServiceImpl.

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

Field Summary
protected  CounterLocalService counterLocalService
           
protected  LayoutBranchLocalService layoutBranchLocalService
           
protected  LayoutBranchPersistence layoutBranchPersistence
           
protected  LayoutBranchService layoutBranchService
           
protected  LayoutRevisionLocalService layoutRevisionLocalService
           
protected  LayoutRevisionPersistence layoutRevisionPersistence
           
protected  LayoutRevisionService layoutRevisionService
           
protected  LayoutSetBranchLocalService layoutSetBranchLocalService
           
protected  LayoutSetBranchPersistence layoutSetBranchPersistence
           
protected  LayoutSetBranchService layoutSetBranchService
           
protected  RecentLayoutBranchLocalService recentLayoutBranchLocalService
           
protected  RecentLayoutBranchPersistence recentLayoutBranchPersistence
           
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
LayoutBranchServiceBaseImpl()
           
 
Method Summary
 void afterPropertiesSet()
           
 void destroy()
           
 CounterLocalService getCounterLocalService()
          Returns the counter local service.
 LayoutBranchLocalService getLayoutBranchLocalService()
          Returns the layout branch local service.
 LayoutBranchPersistence getLayoutBranchPersistence()
          Returns the layout branch persistence.
 LayoutBranchService getLayoutBranchService()
          Returns the layout branch remote service.
 LayoutRevisionLocalService getLayoutRevisionLocalService()
          Returns the layout revision local service.
 LayoutRevisionPersistence getLayoutRevisionPersistence()
          Returns the layout revision persistence.
 LayoutRevisionService getLayoutRevisionService()
          Returns the layout revision remote service.
 LayoutSetBranchLocalService getLayoutSetBranchLocalService()
          Returns the layout set branch local service.
 LayoutSetBranchPersistence getLayoutSetBranchPersistence()
          Returns the layout set branch persistence.
 LayoutSetBranchService getLayoutSetBranchService()
          Returns the layout set branch remote service.
protected  Class<?> getModelClass()
           
protected  String getModelClassName()
           
 String getOSGiServiceIdentifier()
          Returns the OSGi service identifier.
 RecentLayoutBranchLocalService getRecentLayoutBranchLocalService()
          Returns the recent layout branch local service.
 RecentLayoutBranchPersistence getRecentLayoutBranchPersistence()
          Returns the recent layout branch 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 setCounterLocalService(CounterLocalService counterLocalService)
          Sets the counter local service.
 void setLayoutBranchLocalService(LayoutBranchLocalService layoutBranchLocalService)
          Sets the layout branch local service.
 void setLayoutBranchPersistence(LayoutBranchPersistence layoutBranchPersistence)
          Sets the layout branch persistence.
 void setLayoutBranchService(LayoutBranchService layoutBranchService)
          Sets the layout branch remote service.
 void setLayoutRevisionLocalService(LayoutRevisionLocalService layoutRevisionLocalService)
          Sets the layout revision local service.
 void setLayoutRevisionPersistence(LayoutRevisionPersistence layoutRevisionPersistence)
          Sets the layout revision persistence.
 void setLayoutRevisionService(LayoutRevisionService layoutRevisionService)
          Sets the layout revision remote service.
 void setLayoutSetBranchLocalService(LayoutSetBranchLocalService layoutSetBranchLocalService)
          Sets the layout set branch local service.
 void setLayoutSetBranchPersistence(LayoutSetBranchPersistence layoutSetBranchPersistence)
          Sets the layout set branch persistence.
 void setLayoutSetBranchService(LayoutSetBranchService layoutSetBranchService)
          Sets the layout set branch remote service.
 void setRecentLayoutBranchLocalService(RecentLayoutBranchLocalService recentLayoutBranchLocalService)
          Sets the recent layout branch local service.
 void setRecentLayoutBranchPersistence(RecentLayoutBranchPersistence recentLayoutBranchPersistence)
          Sets the recent layout branch 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.portal.service.LayoutBranchService
addLayoutBranch, deleteLayoutBranch, updateLayoutBranch
 

Field Detail

layoutBranchLocalService

@BeanReference(type=LayoutBranchLocalService.class)
protected LayoutBranchLocalService layoutBranchLocalService

layoutBranchService

@BeanReference(type=LayoutBranchService.class)
protected LayoutBranchService layoutBranchService

layoutBranchPersistence

@BeanReference(type=LayoutBranchPersistence.class)
protected LayoutBranchPersistence layoutBranchPersistence

counterLocalService

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

layoutRevisionLocalService

@BeanReference(type=LayoutRevisionLocalService.class)
protected LayoutRevisionLocalService layoutRevisionLocalService

layoutRevisionService

@BeanReference(type=LayoutRevisionService.class)
protected LayoutRevisionService layoutRevisionService

layoutRevisionPersistence

@BeanReference(type=LayoutRevisionPersistence.class)
protected LayoutRevisionPersistence layoutRevisionPersistence

layoutSetBranchLocalService

@BeanReference(type=LayoutSetBranchLocalService.class)
protected LayoutSetBranchLocalService layoutSetBranchLocalService

layoutSetBranchService

@BeanReference(type=LayoutSetBranchService.class)
protected LayoutSetBranchService layoutSetBranchService

layoutSetBranchPersistence

@BeanReference(type=LayoutSetBranchPersistence.class)
protected LayoutSetBranchPersistence layoutSetBranchPersistence

recentLayoutBranchLocalService

@BeanReference(type=RecentLayoutBranchLocalService.class)
protected RecentLayoutBranchLocalService recentLayoutBranchLocalService

recentLayoutBranchPersistence

@BeanReference(type=RecentLayoutBranchPersistence.class)
protected RecentLayoutBranchPersistence recentLayoutBranchPersistence

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

LayoutBranchServiceBaseImpl

public LayoutBranchServiceBaseImpl()
Method Detail

getLayoutBranchLocalService

public LayoutBranchLocalService getLayoutBranchLocalService()
Returns the layout branch local service.

Returns:
the layout branch local service

setLayoutBranchLocalService

public void setLayoutBranchLocalService(LayoutBranchLocalService layoutBranchLocalService)
Sets the layout branch local service.

Parameters:
layoutBranchLocalService - the layout branch local service

getLayoutBranchService

public LayoutBranchService getLayoutBranchService()
Returns the layout branch remote service.

Returns:
the layout branch remote service

setLayoutBranchService

public void setLayoutBranchService(LayoutBranchService layoutBranchService)
Sets the layout branch remote service.

Parameters:
layoutBranchService - the layout branch remote service

getLayoutBranchPersistence

public LayoutBranchPersistence getLayoutBranchPersistence()
Returns the layout branch persistence.

Returns:
the layout branch persistence

setLayoutBranchPersistence

public void setLayoutBranchPersistence(LayoutBranchPersistence layoutBranchPersistence)
Sets the layout branch persistence.

Parameters:
layoutBranchPersistence - the layout branch 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

getLayoutRevisionLocalService

public LayoutRevisionLocalService getLayoutRevisionLocalService()
Returns the layout revision local service.

Returns:
the layout revision local service

setLayoutRevisionLocalService

public void setLayoutRevisionLocalService(LayoutRevisionLocalService layoutRevisionLocalService)
Sets the layout revision local service.

Parameters:
layoutRevisionLocalService - the layout revision local service

getLayoutRevisionService

public LayoutRevisionService getLayoutRevisionService()
Returns the layout revision remote service.

Returns:
the layout revision remote service

setLayoutRevisionService

public void setLayoutRevisionService(LayoutRevisionService layoutRevisionService)
Sets the layout revision remote service.

Parameters:
layoutRevisionService - the layout revision remote service

getLayoutRevisionPersistence

public LayoutRevisionPersistence getLayoutRevisionPersistence()
Returns the layout revision persistence.

Returns:
the layout revision persistence

setLayoutRevisionPersistence

public void setLayoutRevisionPersistence(LayoutRevisionPersistence layoutRevisionPersistence)
Sets the layout revision persistence.

Parameters:
layoutRevisionPersistence - the layout revision persistence

getLayoutSetBranchLocalService

public LayoutSetBranchLocalService getLayoutSetBranchLocalService()
Returns the layout set branch local service.

Returns:
the layout set branch local service

setLayoutSetBranchLocalService

public void setLayoutSetBranchLocalService(LayoutSetBranchLocalService layoutSetBranchLocalService)
Sets the layout set branch local service.

Parameters:
layoutSetBranchLocalService - the layout set branch local service

getLayoutSetBranchService

public LayoutSetBranchService getLayoutSetBranchService()
Returns the layout set branch remote service.

Returns:
the layout set branch remote service

setLayoutSetBranchService

public void setLayoutSetBranchService(LayoutSetBranchService layoutSetBranchService)
Sets the layout set branch remote service.

Parameters:
layoutSetBranchService - the layout set branch remote service

getLayoutSetBranchPersistence

public LayoutSetBranchPersistence getLayoutSetBranchPersistence()
Returns the layout set branch persistence.

Returns:
the layout set branch persistence

setLayoutSetBranchPersistence

public void setLayoutSetBranchPersistence(LayoutSetBranchPersistence layoutSetBranchPersistence)
Sets the layout set branch persistence.

Parameters:
layoutSetBranchPersistence - the layout set branch persistence

getRecentLayoutBranchLocalService

public RecentLayoutBranchLocalService getRecentLayoutBranchLocalService()
Returns the recent layout branch local service.

Returns:
the recent layout branch local service

setRecentLayoutBranchLocalService

public void setRecentLayoutBranchLocalService(RecentLayoutBranchLocalService recentLayoutBranchLocalService)
Sets the recent layout branch local service.

Parameters:
recentLayoutBranchLocalService - the recent layout branch local service

getRecentLayoutBranchPersistence

public RecentLayoutBranchPersistence getRecentLayoutBranchPersistence()
Returns the recent layout branch persistence.

Returns:
the recent layout branch persistence

setRecentLayoutBranchPersistence

public void setRecentLayoutBranchPersistence(RecentLayoutBranchPersistence recentLayoutBranchPersistence)
Sets the recent layout branch persistence.

Parameters:
recentLayoutBranchPersistence - the recent layout branch 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 LayoutBranchService
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