Package org.duracloud.sync.endpoint
Class EndPointLogger
- java.lang.Object
-
- org.duracloud.sync.endpoint.EndPointLogger
-
- All Implemented Interfaces:
EndPointListener
public class EndPointLogger extends Object implements EndPointListener
This class monitors and logs evnet point events.- Author:
- Daniel Bernstein
-
-
Constructor Summary
Constructors Constructor Description EndPointLogger()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcontentAdded(String storeId, String spaceId, String contentId, String localFilePath)voidcontentBackedUp(String storeId, String spaceId, String contentId, String backupContentId, String localFilePath)voidcontentDeleted(String storeId, String spaceId, String contentId)voidcontentUpdated(String storeId, String spaceId, String contentId, String localFilePath)voidcontentUpdateIgnored(String storeId, String spaceId, String contentId, String localFilePath)
-
-
-
Method Detail
-
contentBackedUp
public void contentBackedUp(String storeId, String spaceId, String contentId, String backupContentId, String localFilePath)
- Specified by:
contentBackedUpin interfaceEndPointListener
-
contentAdded
public void contentAdded(String storeId, String spaceId, String contentId, String localFilePath)
- Specified by:
contentAddedin interfaceEndPointListener
-
contentUpdated
public void contentUpdated(String storeId, String spaceId, String contentId, String localFilePath)
- Specified by:
contentUpdatedin interfaceEndPointListener
-
contentDeleted
public void contentDeleted(String storeId, String spaceId, String contentId)
- Specified by:
contentDeletedin interfaceEndPointListener
-
contentUpdateIgnored
public void contentUpdateIgnored(String storeId, String spaceId, String contentId, String localFilePath)
- Specified by:
contentUpdateIgnoredin interfaceEndPointListener
-
-