Commit 0ecfe03a authored by Andrew Wright's avatar Andrew Wright Committed by andrew

set the Retention and Target


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@1392 b35dd754-fafc-0310-a699-88a17e54d16e
parent 1d8952c6
package org.jivesoftware.database;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.lang.annotation.ElementType;
/**
* Used to specify what jive id an object should have
*
* @author Andrew Wright
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface JiveID {
/**
* should return the int type for this object
*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment