blob: 3c2b9ab5a8e99c26c1bd06d3945e70f8d3f7c7c5 [file] [log] [blame]
package org.apache.photark.services.gallery;
import org.apache.photark.Image;
import org.oasisopen.sca.annotation.Remotable;
@Remotable
public interface GalleryListener {
void imageAdded(String albumName, Image image);
void imageRemoved(String albumName, Image image);
}