mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-10-08 14:51:49 +00:00
Merged HEAD-BUG-FIX (5.1/Cloud) to HEAD (5.1/Cloud)
107541: Merged 5.0.N (5.0.3) to HEAD-BUG-FIX (5.1/Cloud) (PARTIAL MERGE) 107413: Merged DEV to 5.0.N (5.0.3) 106858 : MNT-13545: JavaDoc : Inconsistencies between the Java doc and the actual code - Cleaning of Javadoc, 107565: MNT-13545 Fix compilation after merge of Javadoc git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@107633 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -352,9 +352,9 @@ public class PublishingEventHelper
|
||||
|
||||
/**
|
||||
* Returns a {@link List} of the {@link NodeRef}s representing PublishingEvents that were scheduled to publish at least one of the specified <code>publishedNodes</code>.
|
||||
* @param queue
|
||||
* @param publishedNodes
|
||||
* @return
|
||||
* @param queue NodeRef
|
||||
* @param publishedNodes NodeRef..
|
||||
* @return List<NodeRef>
|
||||
*/
|
||||
public List<NodeRef> getEventNodesForPublishedNodes(final NodeRef queue, NodeRef... publishedNodes)
|
||||
{
|
||||
@@ -363,9 +363,9 @@ public class PublishingEventHelper
|
||||
|
||||
/**
|
||||
* Returns a {@link List} of the {@link NodeRef}s representing PublishingEvents that were scheduled to publish at least one of the specified <code>publishedNodes</code>.
|
||||
* @param queue
|
||||
* @param publishedNodes
|
||||
* @return
|
||||
* @param queue NodeRef
|
||||
* @param publishedNodes Collection<NodeRef>
|
||||
* @return List<NodeRef>
|
||||
*/
|
||||
public List<NodeRef> getEventNodesForPublishedNodes(final NodeRef queue, Collection<NodeRef> publishedNodes)
|
||||
{
|
||||
@@ -374,9 +374,9 @@ public class PublishingEventHelper
|
||||
|
||||
/**
|
||||
* Returns a {@link List} of the {@link NodeRef}s representing PublishingEvents that were scheduled to unpublish at least one of the specified <code>unpublishedNodes</code>.
|
||||
* @param queue
|
||||
* @param unpublishedNodes
|
||||
* @return
|
||||
* @param queue NodeRef
|
||||
* @param unpublishedNodes Collection<NodeRef>
|
||||
* @return List<NodeRef>
|
||||
*/
|
||||
public List<NodeRef> getEventNodesForUnpublishedNodes(final NodeRef queue, Collection<NodeRef> unpublishedNodes)
|
||||
{
|
||||
@@ -385,9 +385,9 @@ public class PublishingEventHelper
|
||||
|
||||
/**
|
||||
* Returns a {@link List} of the {@link NodeRef}s representing PublishingEvents that were scheduled to publish the specified <code>publishedNode</code>.
|
||||
* @param queue
|
||||
* @param publishedNode
|
||||
* @return
|
||||
* @param queue NodeRef
|
||||
* @param publishedNode NodeRef
|
||||
* @return List<NodeRef>
|
||||
*/
|
||||
public List<NodeRef> getEventNodesForPublishedNode(final NodeRef queue, NodeRef publishedNode)
|
||||
{
|
||||
@@ -397,9 +397,9 @@ public class PublishingEventHelper
|
||||
|
||||
/**
|
||||
* Returns a {@link List} of the {@link NodeRef}s representing PublishingEvents that were scheduled to unpublish the specified <code>unpublishedNode</code>.
|
||||
* @param queue
|
||||
* @param unpublishedNode
|
||||
* @return
|
||||
* @param queue NodeRef
|
||||
* @param unpublishedNode NodeRef
|
||||
* @return List<NodeRef>
|
||||
*/
|
||||
public List<NodeRef> getEventNodesForUnpublishedNode(final NodeRef queue, NodeRef unpublishedNode)
|
||||
{
|
||||
@@ -679,7 +679,7 @@ public class PublishingEventHelper
|
||||
|
||||
/**
|
||||
* Sets a list of excluded aspects, assumes the fully qualified name. Replaces any exising excluded aspects.
|
||||
* @param excludedAspects
|
||||
* @param excludedAspects Collection<String>
|
||||
*/
|
||||
public void setExcludedAspects(Collection<String> excludedAspects)
|
||||
{
|
||||
|
Reference in New Issue
Block a user