com.ibm.portal.model
Interface MarkupListProvider


public interface MarkupListProvider

An interface for a provider of markup lists. Context ctx = new InitialContext();
MarkupListHome home = (MarkupListHome) ctx.lookup("portal:service/model/MarkupList");
if (home != null) {
MarkupList list = home.getMarkupListProvider().getMarkupList();
...
}

Since:
5.1.0.1

Method Summary
<T extends java.lang.Object & Markup>
MarkupList<T>
getMarkupList()
          Returns the portal markup list.
<T extends java.lang.Object & Markup>
MarkupList<T>
getMarkupList(javax.servlet.ServletRequest aRequest)
          Returns the portal markup list.
 

Method Detail

getMarkupList

<T extends java.lang.Object & Markup> MarkupList<T> getMarkupList(javax.servlet.ServletRequest aRequest)
                                                             throws ModelException
Returns the portal markup list.

Parameters:
aRequest - the current request
Returns:
the markup list valid in the current request
Throws:
ModelException - if the model cannot be returned

getMarkupList

<T extends java.lang.Object & Markup> MarkupList<T> getMarkupList()
                                                             throws ModelException
Returns the portal markup list.

Returns:
the current markup list of the portal
Throws:
ModelException - if the model cannot be returned
Since:
6.1