Interface ImageDetailsDao
- All Known Implementing Classes:
- DefaultImageDetailsDao
public interface ImageDetailsDao
Data Access Object for database storage and retrieval of 
ImageDetails.- 
Method SummaryModifier and TypeMethodDescriptiongetImageDetails(Attachment attachment) Fetch the image details of a specific attachment from the database.voidremoveDetailsFor(Attachment attachment) Remove any storedImageDetailsfor the givenAttachment.voidsave(ImageDetails imageDetails) Save the image details of an attachment.
- 
Method Details- 
getImageDetailsFetch the image details of a specific attachment from the database.- Parameters:
- attachment- for which the image details will be retrieved
- Returns:
- null if no image details have been stored for this attachment
 
- 
saveSave the image details of an attachment.- Parameters:
- imageDetails- to save.
 
- 
removeDetailsForRemove any storedImageDetailsfor the givenAttachment.
 
-