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