Interface CategoryInfo
-
- All Known Implementing Classes:
SimpleCategoryInfo
@Deprecated public interface CategoryInfo
Deprecated.Legacy AEM 6.x API.Metadata interface used by WorkspaceManager and Provider implementations to construct Atompub Service Documents. The CategoryInfo interface provides information used to construct an atom:category element within an app:categories
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description org.apache.abdera.model.CategoryasCategoryElement(RequestContext request)Deprecated.Convert this into an instance of the FOM Category interfaceStringgetLabel(RequestContext request)Deprecated.Return the value of the atom:category label attribute or null if the label should be omitted.StringgetScheme(RequestContext request)Deprecated.Return the value of the atom:category scheme attribute or null if the scheme should be omittedStringgetTerm(RequestContext request)Deprecated.Return the value of the atom:category term attribute.
-
-
-
Method Detail
-
getScheme
String getScheme(RequestContext request)
Deprecated.Return the value of the atom:category scheme attribute or null if the scheme should be omitted
-
getTerm
String getTerm(RequestContext request)
Deprecated.Return the value of the atom:category term attribute. This value MUST be provided
-
getLabel
String getLabel(RequestContext request)
Deprecated.Return the value of the atom:category label attribute or null if the label should be omitted. This value is language-sensitive
-
asCategoryElement
org.apache.abdera.model.Category asCategoryElement(RequestContext request)
Deprecated.Convert this into an instance of the FOM Category interface
-
-