Class DeleteLinksStatusReport
- java.lang.Object
-
- org.alfresco.service.cmr.repository.DeleteLinksStatusReport
-
public class DeleteLinksStatusReport extends Object
This class is used by DocumentLinkService to encapsulate the status of deleting the links of a document.- Since:
- 5.1
- Author:
- Ana Bozianu
-
-
Constructor Summary
Constructors Constructor Description DeleteLinksStatusReport()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddErrorDetail(org.alfresco.service.cmr.repository.NodeRef nodeRef, Throwable th)voidaddTotalLinksFoundCount(int totalLinksFoundCount)intgetDeletedLinksCount()HashMap<org.alfresco.service.cmr.repository.NodeRef,Throwable>getErrorDetails()intgetTotalLinksFoundCount()voidincrementDeletedLinksCount()voidsetDeletedLinksCount(int deletedLinksCount)voidsetTotalLinksFoundCount(int totalLinksFoundCount)
-
-
-
Method Detail
-
getTotalLinksFoundCount
public int getTotalLinksFoundCount()
-
getDeletedLinksCount
public int getDeletedLinksCount()
-
getErrorDetails
public HashMap<org.alfresco.service.cmr.repository.NodeRef,Throwable> getErrorDetails()
-
setTotalLinksFoundCount
public void setTotalLinksFoundCount(int totalLinksFoundCount)
-
addTotalLinksFoundCount
public void addTotalLinksFoundCount(int totalLinksFoundCount)
-
setDeletedLinksCount
public void setDeletedLinksCount(int deletedLinksCount)
-
incrementDeletedLinksCount
public void incrementDeletedLinksCount()
-
addErrorDetail
public void addErrorDetail(org.alfresco.service.cmr.repository.NodeRef nodeRef, Throwable th)
-
-