Retrieves list of all Portlets in the specified webapp.
/bea/wlp/api
GET
/bea/wlp/api/portlet/list
|
Parameter
|
Type
|
Description
|
Allowed Values
|
Default Value
|
|---|---|---|---|---|
|
webapp (required)
|
String
|
The webapp to list Portlets under.
| ||
|
format
|
String
|
The format of the results.
|
xml
json |
xml
|
|
max
|
Integer
|
The maximum number of Portlets to return.
|
50
|
|
|
start
|
Integer
|
The starting index for returned Portlets.
|
0
|
|
|
locale
|
String
|
The locale to use for the title and/or descriptions of the returned Portlets. Must be of the format: lang-country-variant ie. [nn], [nn-nn], or [nn-nn-nnnn].
|
Preferred locale from request.
|
/bea/wlp/api/portlet/list?webapp=myWebApp&max=2&locale=en-us
<rsp>
<portlet_summaries>
<portlet_summary>
<label>weather_1</label>
<title>Weather Portlet</title>
<icon>weather.gif</icon>
<description>Current weather.</description>
</portlet_summary>
<portlet_summary>
<label>news_1</label>
<title>News Portlet</title>
<icon>news.gif</icon>
<description>Current news.</description>
</portlet_summary>
</portlet_summaries>
</rsp>