Class RenderViewRenditionProvider
- java.lang.Object
-
- org.nuxeo.ecm.platform.threed.rendition.RenderViewRenditionProvider
-
- All Implemented Interfaces:
RenditionProvider
public class RenderViewRenditionProvider extends Object implements RenditionProvider
Provides a rendition based on a render view (referenced through the rendition definition name).- Since:
- 8.4
-
-
Constructor Summary
Constructors Constructor Description RenderViewRenditionProvider()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isAvailable(DocumentModel documentModel, RenditionDefinition renditionDefinition)
Test if the Rendition is available on the given DocumentModelList<Blob>
render(DocumentModel documentModel, RenditionDefinition renditionDefinition)
Generate the rendition Blobs for a givenRenditionDefinition
.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.nuxeo.ecm.platform.rendition.extension.RenditionProvider
getVariant
-
-
-
-
Method Detail
-
isAvailable
public boolean isAvailable(DocumentModel documentModel, RenditionDefinition renditionDefinition)
Description copied from interface:RenditionProvider
Test if the Rendition is available on the given DocumentModel- Specified by:
isAvailable
in interfaceRenditionProvider
-
render
public List<Blob> render(DocumentModel documentModel, RenditionDefinition renditionDefinition)
Description copied from interface:RenditionProvider
Generate the rendition Blobs for a givenRenditionDefinition
. Return is a List of Blob for bigger flexibility (typically HTML rendition with resources)- Specified by:
render
in interfaceRenditionProvider
- Parameters:
documentModel
- the targetDocumentModel
renditionDefinition
- theRenditionDefinition
to use- Returns:
- The list of Blobs
-
-