Package org.cyclos.impl.system
Interface BaseImageServiceLocal<I extends Image,NP>
-
- All Superinterfaces:
BaseImageService<NP>,Service
- All Known Subinterfaces:
AdCategoryImageServiceLocal,AdImageServiceLocal,BaseCategorizedImageServiceLocal<I,C,NP>,BaseCustomImageServiceLocal<I,C,NP>,BaseOwnedImageServiceLocal<O,I,NP>,ConfigurationImageServiceLocal,ContactInfoImageServiceLocal,CustomFieldValueImageServiceLocal,DefaultUserImageServiceLocal,IdentityProviderImageServiceLocal,ImportedImageServiceLocal,OidcClientImageServiceLocal,SystemCustomImageServiceLocal,TempImageServiceLocal,ThemeImageServiceLocal,UserCustomImageServiceLocal,UserImageServiceLocal,VoucherCategoryImageServiceLocal,VoucherTemplateImageServiceLocal,VoucherTypeImageServiceLocal
public interface BaseImageServiceLocal<I extends Image,NP> extends BaseImageService<NP>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Ifind(Long id)Finds an image by idImageNaturegetImageNature()Should return the nature of images handled by this serviceSerializableInputStreamreadContent(Long id)Reads the contents for the image with the given id, with the specified sizeSerializableInputStreamreadContentByKey(String key)Reads the contents for the image with the given key, with the specified size-
Methods inherited from interface org.cyclos.services.system.BaseImageService
remove, removeAll, save, saveName
-
-
-
-
Method Detail
-
getImageNature
ImageNature getImageNature()
Should return the nature of images handled by this service
-
readContent
SerializableInputStream readContent(Long id)
Reads the contents for the image with the given id, with the specified size
-
readContentByKey
SerializableInputStream readContentByKey(String key)
Reads the contents for the image with the given key, with the specified size
-
-