Package org.alfresco.repo.rendition
Interface RenditionLocation
-
- All Known Implementing Classes:
RenditionLocationImpl
public interface RenditionLocationThis simple interface defines a data class which identifies a rendition node, its parent and its name.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetChildName()Gets the name of the rendition.org.alfresco.service.cmr.repository.NodeRefgetChildRef()Gets the rendition node itself.org.alfresco.service.cmr.repository.NodeRefgetParentRef()Gets the parent node of the rendition.
-
-
-
Method Detail
-
getParentRef
org.alfresco.service.cmr.repository.NodeRef getParentRef()
Gets the parent node of the rendition.- Returns:
- NodeRef
-
getChildRef
org.alfresco.service.cmr.repository.NodeRef getChildRef()
Gets the rendition node itself.- Returns:
- NodeRef
-
getChildName
java.lang.String getChildName()
Gets the name of the rendition.- Returns:
- String
-
-