Class DeleteLinksStatusReport
- java.lang.Object
-
- org.alfresco.service.cmr.repository.DeleteLinksStatusReport
-
public class DeleteLinksStatusReport extends java.lang.ObjectThis 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, java.lang.Throwable th)voidaddTotalLinksFoundCount(int totalLinksFoundCount)intgetDeletedLinksCount()java.util.HashMap<org.alfresco.service.cmr.repository.NodeRef,java.lang.Throwable>getErrorDetails()intgetTotalLinksFoundCount()voidincrementDeletedLinksCount()voidsetDeletedLinksCount(int deletedLinksCount)voidsetTotalLinksFoundCount(int totalLinksFoundCount)
-
-
-
Method Detail
-
getTotalLinksFoundCount
public int getTotalLinksFoundCount()
-
getDeletedLinksCount
public int getDeletedLinksCount()
-
getErrorDetails
public java.util.HashMap<org.alfresco.service.cmr.repository.NodeRef,java.lang.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, java.lang.Throwable th)
-
-