Class LayoutServiceBaseImpl

Object
com.liferay.portal.kernel.service.BaseServiceImpl
com.liferay.portal.service.base.LayoutServiceBaseImpl
All Implemented Interfaces:
com.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService, com.liferay.portal.kernel.service.BaseService, com.liferay.portal.kernel.service.LayoutService
Direct Known Subclasses:
LayoutServiceImpl

public abstract class LayoutServiceBaseImpl extends com.liferay.portal.kernel.service.BaseServiceImpl implements com.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService, com.liferay.portal.kernel.service.LayoutService
Provides the base implementation for the layout 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 LayoutServiceImpl.

Author:
Brian Wing Shun Chan
See Also:
{$generated.description}
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected com.liferay.counter.kernel.service.CounterLocalService
     
    protected com.liferay.portal.kernel.service.persistence.LayoutFinder
     
    protected com.liferay.portal.kernel.service.LayoutLocalService
     
    protected com.liferay.portal.kernel.service.persistence.LayoutPersistence
     
    protected com.liferay.portal.kernel.service.LayoutService
     

    Fields inherited from class com.liferay.portal.kernel.service.BaseServiceImpl

    ANONYMOUS_NAMES, JRUN_ANONYMOUS, ORACLE_ANONYMOUS, SUN_ANONYMOUS, WEBLOGIC_ANONYMOUS
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
     
    void
     
    com.liferay.counter.kernel.service.CounterLocalService
    Returns the counter local service.
    com.liferay.portal.kernel.service.persistence.LayoutFinder
    Returns the layout finder.
    com.liferay.portal.kernel.service.LayoutLocalService
    Returns the layout local service.
    com.liferay.portal.kernel.service.persistence.LayoutPersistence
    Returns the layout persistence.
    com.liferay.portal.kernel.service.LayoutService
    Returns the layout 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
    setLayoutFinder(com.liferay.portal.kernel.service.persistence.LayoutFinder layoutFinder)
    Sets the layout finder.
    void
    setLayoutLocalService(com.liferay.portal.kernel.service.LayoutLocalService layoutLocalService)
    Sets the layout local service.
    void
    setLayoutPersistence(com.liferay.portal.kernel.service.persistence.LayoutPersistence layoutPersistence)
    Sets the layout persistence.
    void
    setLayoutService(com.liferay.portal.kernel.service.LayoutService layoutService)
    Sets the layout 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.LayoutService

    addLayout, addLayout, addLayout, addLayout, addTempFileEntry, copyLayout, deleteLayout, deleteLayout, deleteLayout, deleteTempFileEntry, fetchFirstLayout, fetchLayout, fetchLayoutByExternalReferenceCode, fetchLayoutPlid, getAncestorLayouts, getControlPanelLayoutPlid, getDefaultPlid, getDefaultPlid, getDefaultPlid, getLayoutByExternalReferenceCode, getLayoutByUuidAndGroupId, getLayoutName, getLayoutPlid, getLayoutReferences, getLayouts, getLayouts, getLayouts, getLayouts, getLayouts, getLayouts, getLayouts, getLayouts, getLayouts, getLayouts, getLayoutsCount, getLayoutsCount, getLayoutsCount, getLayoutsCount, getLayoutsCount, getLayoutsCount, getLayoutsCount, getTempFileNames, hasLayout, hasPortletId, publishLayout, schedulePublishToLive, schedulePublishToRemote, setLayouts, unschedulePublishToLive, unschedulePublishToRemote, updateIconImage, updateLayout, updateLayout, updateLookAndFeel, updateName, updateName, updateParentLayoutId, updateParentLayoutId, updateParentLayoutIdAndPriority, updatePriority, updatePriority, updatePriority, updateType
  • Field Details

    • layoutLocalService

      @BeanReference(type=com.liferay.portal.kernel.service.LayoutLocalService.class) protected com.liferay.portal.kernel.service.LayoutLocalService layoutLocalService
    • layoutService

      @BeanReference(type=com.liferay.portal.kernel.service.LayoutService.class) protected com.liferay.portal.kernel.service.LayoutService layoutService
    • layoutPersistence

      @BeanReference(type=com.liferay.portal.kernel.service.persistence.LayoutPersistence.class) protected com.liferay.portal.kernel.service.persistence.LayoutPersistence layoutPersistence
    • layoutFinder

      @BeanReference(type=com.liferay.portal.kernel.service.persistence.LayoutFinder.class) protected com.liferay.portal.kernel.service.persistence.LayoutFinder layoutFinder
    • counterLocalService

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

    • LayoutServiceBaseImpl

      public LayoutServiceBaseImpl()
  • Method Details

    • getLayoutLocalService

      public com.liferay.portal.kernel.service.LayoutLocalService getLayoutLocalService()
      Returns the layout local service.
      Returns:
      the layout local service
    • setLayoutLocalService

      public void setLayoutLocalService(com.liferay.portal.kernel.service.LayoutLocalService layoutLocalService)
      Sets the layout local service.
      Parameters:
      layoutLocalService - the layout local service
    • getLayoutService

      public com.liferay.portal.kernel.service.LayoutService getLayoutService()
      Returns the layout remote service.
      Returns:
      the layout remote service
    • setLayoutService

      public void setLayoutService(com.liferay.portal.kernel.service.LayoutService layoutService)
      Sets the layout remote service.
      Parameters:
      layoutService - the layout remote service
    • getLayoutPersistence

      public com.liferay.portal.kernel.service.persistence.LayoutPersistence getLayoutPersistence()
      Returns the layout persistence.
      Returns:
      the layout persistence
    • setLayoutPersistence

      public void setLayoutPersistence(com.liferay.portal.kernel.service.persistence.LayoutPersistence layoutPersistence)
      Sets the layout persistence.
      Parameters:
      layoutPersistence - the layout persistence
    • getLayoutFinder

      public com.liferay.portal.kernel.service.persistence.LayoutFinder getLayoutFinder()
      Returns the layout finder.
      Returns:
      the layout finder
    • setLayoutFinder

      public void setLayoutFinder(com.liferay.portal.kernel.service.persistence.LayoutFinder layoutFinder)
      Sets the layout finder.
      Parameters:
      layoutFinder - the layout finder
    • 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
    • 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.LayoutService
      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