Remove redundant setter and related bean injection (deprecated in 3.0)

Remove deprecated NodeArchive-related methods

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@132100 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2016-11-02 14:40:24 +00:00
parent 1a8c5236b2
commit 6451543233
4 changed files with 0 additions and 145 deletions

View File

@@ -129,41 +129,6 @@ public interface NodeArchiveService
QName assocTypeQName,
QName assocQName);
/**
* Attempt to restore all archived nodes into their original locations.
* <p>
* <b>TRANSACTIONS:</b> This method will execute in a new transaction.
*
* @param originalStoreRef the store that the items originally came from
* @return Returns the results of the each attempted restore operation
*
* @deprecated In 3.4: no longer supported as it seldom works due to missing parents
*/
public List<RestoreNodeReport> restoreAllArchivedNodes(StoreRef originalStoreRef);
/**
* Attempt to restore all archived nodes into a new location.
* <p>
* <b>TRANSACTIONS:</b> This method will execute in a new transaction.
*
* @param originalStoreRef the store that the items originally came from
* @param destinationNodeRef the parent of the restored nodes, or
* <tt>null</tt> to use the original parent node references
* @param assocTypeQName the type of the primary associations to link the
* restored node to the destination parent, or <tt>null</tt> to use
* the orginal association types
* @param assocQName the name of the primary associations to be created,
* or <tt>null</tt> to use the original association names
* @return Returns the results of the each attempted restore operation
*
* @deprecated In 3.4: no longer supported as it seldom works due to missing parents
*/
public List<RestoreNodeReport> restoreAllArchivedNodes(
StoreRef originalStoreRef,
NodeRef destinationNodeRef,
QName assocTypeQName,
QName assocQName);
/**
* Permanently delete the archived node.
*