Package org.richfaces.photoalbum.model

Examples of org.richfaces.photoalbum.model.Album.removeImage()


     * @throws PhotoAlbumException
     */
    public void deleteImage(Image image) throws PhotoAlbumException {
        Album parentAlbum = em.find(Album.class, image.getAlbum().getId());
        try {
            parentAlbum.removeImage(image);
            em.merge(parentAlbum);
            em.flush();

            // the image will be sent in an event
            image.setAlbum(parentAlbum);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.