PREV CLASS
NEXT CLASS
FRAMES
NO FRAMES
SUMMARY: NESTED | FIELD | CONSTR | METHOD
DETAIL: FIELD | CONSTR | METHOD
com.ibm.portal.model
Interface LanguageListProvider
public interface LanguageListProvider
An interface for a provider of the language list. This is the list
of portal supported locales.
Context ctx = new InitialContext();
LanguageListHome home = (LanguageListHome) ctx.lookup("portal:service/model/LanguageList");
if (home != null) {
LanguageList list = home.getLanguageListProvider().getLanguageList();
...
}
- Since:
- 5.1.0.1
getLanguageList
<T extends java.lang.Object & Language> LanguageList<T> getLanguageList(ServletRequest aRequest)
throws ModelException
- Returns the portal language list.
- Parameters:
- aRequest - the current request
- Returns:
- the language list valid in the current request
- Throws:
- ModelException - if the model cannot be returned
getLanguageList
<T extends java.lang.Object & Language> LanguageList<T> getLanguageList()
throws ModelException
- Returns the portal language list.
- Returns:
- the current language list of the portal
- Throws:
- ModelException - if the model cannot be returned
- Since:
- 6.1
PREV CLASS
NEXT CLASS
FRAMES
NO FRAMES
SUMMARY: NESTED | FIELD | CONSTR | METHOD
DETAIL: FIELD | CONSTR | METHOD