Package org.gatein.pc.api.info
Interface MetaInfo
-
public interface MetaInfoPortlet metadata (display-name, title, short title, keywords).- Since:
- 2.4
- Version:
- $Revision: 6818 $
- Author:
- Julien Viet
-
-
Field Summary
Fields Modifier and Type Field Description static StringDESCRIPTIONKey for description.static StringDISPLAY_NAMEKey for display name.static StringKEYWORDSKey for locale specific keywords associated with this portlet.static StringSHORT_TITLEKey for short title.static StringTITLEKey for title.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.gatein.common.i18n.LocalizedStringgetMetaValue(String key)Return the meta value of the portlet for a specific key.
-
-
-
Field Detail
-
DISPLAY_NAME
static final String DISPLAY_NAME
Key for display name.- See Also:
- Constant Field Values
-
TITLE
static final String TITLE
Key for title.- See Also:
- Constant Field Values
-
SHORT_TITLE
static final String SHORT_TITLE
Key for short title.- See Also:
- Constant Field Values
-
KEYWORDS
static final String KEYWORDS
Key for locale specific keywords associated with this portlet. The keywords are separated by commas.- See Also:
- Constant Field Values
-
DESCRIPTION
static final String DESCRIPTION
Key for description.- See Also:
- Constant Field Values
-
-
Method Detail
-
getMetaValue
org.gatein.common.i18n.LocalizedString getMetaValue(String key)
Return the meta value of the portlet for a specific key.- Parameters:
key- the key- Returns:
- an internationalized value
-
-