packageorg.jivesoftware.database;importjava.lang.annotation.Retention;importjava.lang.annotation.RetentionPolicy;importjava.lang.annotation.Target;importjava.lang.annotation.ElementType;/** * Used to specify what jive id an object should have * * @author Andrew Wright */@Retention(RetentionPolicy.RUNTIME)@Target(ElementType.TYPE)public@interfaceJiveID{/** * should return the int type for this object */intvalue();}