Interface CategoriesInfo
-
- All Superinterfaces:
Iterable<CategoryInfo>
- All Known Implementing Classes:
SimpleCategoriesInfo
@Deprecated public interface CategoriesInfo extends Iterable<CategoryInfo>
Deprecated.Legacy AEM 6.x API.Metadata interface used by WorkspaceManager and Provider implementations to construct Atompub Service Documents. The CategoriesInfo interface provides information used to construct an app:categories element within an app:collection.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description org.apache.abdera.model.CategoriesasCategoriesElement(RequestContext request)Deprecated.Convert this into an instance of the FOM Categories interfaceStringgetHref(RequestContext request)Deprecated.Return the value of the app:categories element href attribute or null if the href should be omittedStringgetScheme(RequestContext request)Deprecated.Return the value of the app:categories element scheme attribute or null if the scheme should be omittedbooleanisFixed(RequestContext request)Deprecated.Return true of the app:categories element fixed attribute should be set-
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
-
-
-
Method Detail
-
isFixed
boolean isFixed(RequestContext request)
Deprecated.Return true of the app:categories element fixed attribute should be set
-
getScheme
String getScheme(RequestContext request)
Deprecated.Return the value of the app:categories element scheme attribute or null if the scheme should be omitted
-
getHref
String getHref(RequestContext request)
Deprecated.Return the value of the app:categories element href attribute or null if the href should be omitted
-
asCategoriesElement
org.apache.abdera.model.Categories asCategoriesElement(RequestContext request)
Deprecated.Convert this into an instance of the FOM Categories interface
-
-