Uses of Interface
org.nuxeo.ecm.platform.rendition.Rendition
-
Packages that use Rendition Package Description org.nuxeo.ecm.platform.rendition org.nuxeo.ecm.platform.rendition.adapter org.nuxeo.ecm.platform.rendition.impl org.nuxeo.ecm.platform.rendition.service -
-
Uses of Rendition in org.nuxeo.ecm.platform.rendition
Methods in org.nuxeo.ecm.platform.rendition that return Rendition Modifier and Type Method Description Rendition
Renderable. getRenditionByKind(String name)
Retrieve theRendition
by it's king (first match rendition is returned)Rendition
Renderable. getRenditionByName(String name)
Retrieve theRendition
by it's name -
Uses of Rendition in org.nuxeo.ecm.platform.rendition.adapter
Methods in org.nuxeo.ecm.platform.rendition.adapter that return Rendition Modifier and Type Method Description protected Rendition
RenderableDocument. getRendition(RenditionDefinition def)
Rendition
RenderableDocument. getRenditionByKind(String kind)
Rendition
RenderableDocument. getRenditionByName(String name)
-
Uses of Rendition in org.nuxeo.ecm.platform.rendition.impl
Classes in org.nuxeo.ecm.platform.rendition.impl that implement Rendition Modifier and Type Class Description class
AbstractRendition
Base implementation of theRendition
interface that mainly wrapps theRenditionDefinition
class
LazyRendition
Implementation of theRendition
interface that allows lazy computation of the rendition Blobsclass
LiveRendition
Implementation of theRendition
interface that is applicable for rendition created on the flyclass
StoredRendition
Implementation of theRendition
interface for rendition that are stored in the Repository -
Uses of Rendition in org.nuxeo.ecm.platform.rendition.service
Methods in org.nuxeo.ecm.platform.rendition.service that return Rendition Modifier and Type Method Description Rendition
RenditionService. getDefaultRendition(DocumentModel doc, String reason, boolean store, Map<String,Serializable> extendedInfos)
Return the defaultRendition
object for the givenDocumentModel
.Rendition
RenditionService. getDefaultRendition(DocumentModel doc, String reason, Map<String,Serializable> extendedInfos)
Same asRenditionService.getDefaultRendition(DocumentModel, String, boolean, Map)
with store parameter set to false.Rendition
RenditionServiceImpl. getDefaultRendition(DocumentModel doc, String reason, boolean store, Map<String,Serializable> extendedInfos)
Rendition
RenditionServiceImpl. getDefaultRendition(DocumentModel doc, String reason, Map<String,Serializable> extendedInfos)
Rendition
RenditionService. getRendition(DocumentModel doc, String renditionName)
Return theRendition
object for the givenDocumentModel
and a rendition definition name.Rendition
RenditionService. getRendition(DocumentModel doc, String renditionName, boolean store)
Return theRendition
object for the givenDocumentModel
and a rendition definition name.Rendition
RenditionServiceImpl. getRendition(DocumentModel doc, String renditionName)
Rendition
RenditionServiceImpl. getRendition(DocumentModel doc, String renditionName, boolean store)
protected Rendition
RenditionServiceImpl. getRendition(DocumentModel doc, RenditionDefinition renditionDefinition, boolean store)
Methods in org.nuxeo.ecm.platform.rendition.service that return types with arguments of type Rendition Modifier and Type Method Description List<Rendition>
RenditionService. getAvailableRenditions(DocumentModel doc)
Returns aList
ofRendition
available on the given Document.List<Rendition>
RenditionService. getAvailableRenditions(DocumentModel doc, boolean onlyVisible)
Returns aList
ofRendition
available on the given Document.List<Rendition>
RenditionServiceImpl. getAvailableRenditions(DocumentModel doc)
List<Rendition>
RenditionServiceImpl. getAvailableRenditions(DocumentModel doc, boolean onlyVisible)
protected Optional<Rendition>
RenditionServiceImpl. getRenditionSafe(DocumentModel doc, String defaultRenditionName, boolean store)
Methods in org.nuxeo.ecm.platform.rendition.service with parameters of type Rendition Modifier and Type Method Description protected StoredRendition
RenditionServiceImpl. storeRendition(DocumentModel sourceDocument, Rendition rendition)
Deprecated.since 10.10, useRenditionServiceImpl.storeRendition(DocumentModel, Rendition, RenditionDefinition)
insteadprotected DocumentModel
RenditionServiceImpl. storeRendition(DocumentModel sourceDocument, Rendition rendition, String name)
Deprecated.since 8.1protected StoredRendition
RenditionServiceImpl. storeRendition(DocumentModel sourceDocument, Rendition rendition, RenditionDefinition renditionDefinition)
-