/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2002,2008 Oracle. All rights reserved.
*
* $Id: Persistent.java,v 1.6.2.2 2008/01/07 15:14:20 cwl Exp $
*/
package com.sleepycat.persist.model;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
* Identifies a persistent class that is not an {@link Entity} class or a
* {@link <a href="Entity.html#simpleTypes">simple type</a>}.
*
* @author Mark Hayes
*/
@Documented @Retention(RUNTIME) @Target(TYPE)
public @interface Persistent {
/**
* Identifies a new version of a class when an incompatible class change
* has been made.
*
* @see Entity#version
*/
int version() default 0;
/**
* Specifies the class that is proxied by this {@link PersistentProxy}
* instance.
*
* @see PersistentProxy
*/
Class proxyFor() default void.class;
}
|