Package org.duracloud.sync.endpoint
Interface EndPointListener
- All Known Implementing Classes:
EndPointLogger
public interface EndPointListener
This interface defines listener methods for monitoring changes in the SyncEndPoint
- Author:
- Daniel Bernstein
-
Method Summary
Modifier and TypeMethodDescriptionvoidcontentAdded(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 absPath)
-
Method Details
-
contentBackedUp
void contentBackedUp(String storeId, String spaceId, String contentId, String backupContentId, String localFilePath) - Parameters:
storeId-spaceId-contentId-backupContentId-localFilePath-
-
contentAdded
- Parameters:
storeId-spaceId-contentId-localFilePath-
-
contentUpdated
- Parameters:
storeId-spaceId-contentId-localFilePath-
-
contentDeleted
- Parameters:
storeId-spaceId-contentId-
-
contentUpdateIgnored
- Parameters:
storeId-spaceId-contentId-absPath-
-