mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Fix bad interfaces causing loop
This commit is contained in:
@@ -260,7 +260,7 @@ public interface Renditions
|
|||||||
*/
|
*/
|
||||||
default DirectAccessUrl requestContentDirectUrl(NodeRef nodeRef, String versionId, String renditionId, boolean attachment, Long validFor)
|
default DirectAccessUrl requestContentDirectUrl(NodeRef nodeRef, String versionId, String renditionId, boolean attachment, Long validFor)
|
||||||
{
|
{
|
||||||
return requestContentDirectUrl(nodeRef, versionId, renditionId, attachment, validFor);
|
return requestContentDirectUrl(nodeRef, versionId, renditionId, attachment, validFor, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -247,7 +247,7 @@ public interface ContentService
|
|||||||
@Auditable(parameters = {"nodeRef", "propertyQName", "validFor"})
|
@Auditable(parameters = {"nodeRef", "propertyQName", "validFor"})
|
||||||
default DirectAccessUrl requestContentDirectUrl(NodeRef nodeRef, QName propertyQName, boolean attachment, Long validFor)
|
default DirectAccessUrl requestContentDirectUrl(NodeRef nodeRef, QName propertyQName, boolean attachment, Long validFor)
|
||||||
{
|
{
|
||||||
return requestContentDirectUrl(nodeRef, propertyQName, attachment, validFor);
|
return requestContentDirectUrl(nodeRef, propertyQName, attachment, validFor, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user