Liferay 6.1.2-ce-ga3

Uses of Class
com.liferay.portal.model.LayoutSoap

Packages that use LayoutSoap
com.liferay.portal.model This package defines the portal model interfaces, classes, utilities, wrappers, and annotated types. 
com.liferay.portal.model.impl This package defines the portal model implementation base classes. 
com.liferay.portal.service.http This package defines the HTTP and SOAP portal service utilities. 
 

Uses of LayoutSoap in com.liferay.portal.model
 

Methods in com.liferay.portal.model that return LayoutSoap
 LayoutSoap LayoutReference.getLayoutSoap()
           
static LayoutSoap LayoutSoap.toSoapModel(Layout model)
           
static LayoutSoap[] LayoutSoap.toSoapModels(Layout[] models)
           
static LayoutSoap[][] LayoutSoap.toSoapModels(Layout[][] models)
           
static LayoutSoap[] LayoutSoap.toSoapModels(List<Layout> models)
           
 

Methods in com.liferay.portal.model with parameters of type LayoutSoap
 void LayoutReference.setLayoutSoap(LayoutSoap layoutSoap)
           
 

Constructors in com.liferay.portal.model with parameters of type LayoutSoap
LayoutReference(LayoutSoap layoutSoap, String portletId)
           
 

Uses of LayoutSoap in com.liferay.portal.model.impl
 

Methods in com.liferay.portal.model.impl with parameters of type LayoutSoap
static Layout LayoutModelImpl.toModel(LayoutSoap soapModel)
          Converts the soap model instance into a normal model instance.
static List<Layout> LayoutModelImpl.toModels(LayoutSoap[] soapModels)
          Converts the soap model instances into normal model instances.
 

Uses of LayoutSoap in com.liferay.portal.service.http
 

Methods in com.liferay.portal.service.http that return LayoutSoap
static LayoutSoap LayoutServiceSoap.addLayout(long groupId, boolean privateLayout, long parentLayoutId, String[] localeNamesMapLanguageIds, String[] localeNamesMapValues, String[] localeTitlesMapLanguageIds, String[] localeTitlesMapValues, String[] descriptionMapLanguageIds, String[] descriptionMapValues, String[] keywordsMapLanguageIds, String[] keywordsMapValues, String[] robotsMapLanguageIds, String[] robotsMapValues, String type, boolean hidden, String friendlyURL, ServiceContext serviceContext)
          Adds a layout with additional parameters.
static LayoutSoap LayoutServiceSoap.addLayout(long groupId, boolean privateLayout, long parentLayoutId, String name, String title, String description, String type, boolean hidden, String friendlyURL, ServiceContext serviceContext)
           This method handles the creation of the layout including its resources, metadata, and internal data structures.
static LayoutSoap[] LayoutServiceSoap.getAncestorLayouts(long plid)
          Returns all the ancestor layouts of the layout.
static LayoutSoap LayoutServiceSoap.getLayoutByUuidAndGroupId(String uuid, long groupId, boolean privateLayout)
           
static LayoutSoap[] LayoutServiceSoap.getLayouts(long groupId, boolean privateLayout)
           
static LayoutSoap[] LayoutServiceSoap.getLayouts(long groupId, boolean privateLayout, long parentLayoutId)
           
static LayoutSoap[] LayoutServiceSoap.getLayouts(long groupId, boolean privateLayout, long parentLayoutId, boolean incomplete, int start, int end)
           
static LayoutSoap LayoutServiceSoap.updateLayout(long groupId, boolean privateLayout, long layoutId, long parentLayoutId, String[] localeNamesMapLanguageIds, String[] localeNamesMapValues, String[] localeTitlesMapLanguageIds, String[] localeTitlesMapValues, String[] descriptionMapLanguageIds, String[] descriptionMapValues, String[] keywordsMapLanguageIds, String[] keywordsMapValues, String[] robotsMapLanguageIds, String[] robotsMapValues, String type, boolean hidden, String friendlyURL, Boolean iconImage, byte[] iconBytes, ServiceContext serviceContext)
          Updates the layout.
static LayoutSoap LayoutServiceSoap.updateLayout(long groupId, boolean privateLayout, long layoutId, String typeSettings)
          Updates the layout replacing its type settings.
static LayoutSoap LayoutServiceSoap.updateLookAndFeel(long groupId, boolean privateLayout, long layoutId, String themeId, String colorSchemeId, String css, boolean wapTheme)
          Updates the look and feel of the layout.
static LayoutSoap LayoutServiceSoap.updateName(long groupId, boolean privateLayout, long layoutId, String name, String languageId)
          Updates the name of the layout matching the group, layout ID, and privacy.
static LayoutSoap LayoutServiceSoap.updateName(long plid, String name, String languageId)
          Updates the name of the layout matching the primary key.
static LayoutSoap LayoutServiceSoap.updateParentLayoutId(long groupId, boolean privateLayout, long layoutId, long parentLayoutId)
          Updates the parent layout ID of the layout matching the group, layout ID, and privacy.
static LayoutSoap LayoutServiceSoap.updateParentLayoutId(long plid, long parentPlid)
          Updates the parent layout ID of the layout matching the primary key.
static LayoutSoap LayoutServiceSoap.updatePriority(long groupId, boolean privateLayout, long layoutId, int priority)
          Updates the priority of the layout matching the group, layout ID, and privacy.
static LayoutSoap LayoutServiceSoap.updatePriority(long plid, int priority)
          Updates the priority of the layout matching the primary key.
 


Liferay 6.1.2-ce-ga3