1 24 package javax.jcr.observation; 25 26 48 public interface EventType { 49 50 55 public static final long ITEM_ADDED = 1; 56 public static final long ITEM_CHANGED = 2; 57 public static final long ITEM_REMOVED = 4; 58 public static final long ITEM_VERSIONED = 8; 59 public static final long ITEM_RESTORED = 16; 60 public static final long LABEL_ADDED = 32; 61 public static final long LABEL_REMOVED = 64; 62 public static final long ITEM_LOCKED = 128; 63 public static final long ITEM_UNLOCKED = 256; 64 public static final long LOCK_EXPIRED = 512; 65 66 74 public long getValue(); 75 76 82 public String getName(); 83 } | Popular Tags |