mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Changed ThumbnailServiceImpl to create renditions of type cm:thumbnail and set the thumbnail name property on them correctly.
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@19184 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -41,7 +41,7 @@ public interface RenditionDefinition extends Action, Serializable
|
||||
/**
|
||||
* @return the name which uniquely identifies this rendering action.
|
||||
*/
|
||||
public QName getRenditionName();
|
||||
QName getRenditionName();
|
||||
|
||||
/**
|
||||
* Returns the node to which the rendition is linked when it is first
|
||||
@@ -51,7 +51,7 @@ public interface RenditionDefinition extends Action, Serializable
|
||||
*
|
||||
* @return the renditionParent
|
||||
*/
|
||||
public NodeRef getRenditionParent();
|
||||
NodeRef getRenditionParent();
|
||||
|
||||
/**
|
||||
* Sets the node to which the rendition is linked when it is first created.
|
||||
@@ -61,7 +61,7 @@ public interface RenditionDefinition extends Action, Serializable
|
||||
*
|
||||
* @param renditionParent the renditionParent to set
|
||||
*/
|
||||
public void setRenditionParent(NodeRef renditionParent);
|
||||
void setRenditionParent(NodeRef renditionParent);
|
||||
|
||||
/**
|
||||
* Returns the association type used to link the rendition to its parent
|
||||
@@ -71,7 +71,7 @@ public interface RenditionDefinition extends Action, Serializable
|
||||
*
|
||||
* @return the renditionAssociationType
|
||||
*/
|
||||
public QName getRenditionAssociationType();
|
||||
QName getRenditionAssociationType();
|
||||
|
||||
/**
|
||||
* Sets the association type used to link the rendition to its parent node
|
||||
@@ -81,7 +81,7 @@ public interface RenditionDefinition extends Action, Serializable
|
||||
*
|
||||
* @param renditionAssociationType the renditionAssociationType to set
|
||||
*/
|
||||
public void setRenditionAssociationType(QName renditionAssociationType);
|
||||
void setRenditionAssociationType(QName renditionAssociationType);
|
||||
|
||||
/**
|
||||
* This method sets a callback object for use in asynchronous renditions. It is
|
||||
@@ -90,7 +90,7 @@ public interface RenditionDefinition extends Action, Serializable
|
||||
*
|
||||
* @param callback a callback object, which may be null.
|
||||
*/
|
||||
public void setCallback(RenderCallback callback);
|
||||
void setCallback(RenderCallback callback);
|
||||
|
||||
/**
|
||||
* This method gets the registered callback object for use with asynchronous
|
||||
@@ -98,5 +98,5 @@ public interface RenditionDefinition extends Action, Serializable
|
||||
*
|
||||
* @return the callback object
|
||||
*/
|
||||
public RenderCallback getCallback();
|
||||
RenderCallback getCallback();
|
||||
}
|
||||
|
Reference in New Issue
Block a user