/*- * See the file LICENSE for redistribution information. * * Copyright (c) 2002,2008 Oracle. All rights reserved. * * $Id: PrimaryKey.java,v 1.1 2008/02/07 17:12:28 mark Exp $ */ package com.sleepycat.persist.model; import static java.lang.annotation.ElementType.FIELD; import static java.lang.annotation.RetentionPolicy.RUNTIME; import java.lang.annotation.Documented; import java.lang.annotation.Retention; import java.lang.annotation.Target; import com.sleepycat.persist.EntityStore; import com.sleepycat.persist.PrimaryIndex; /** * Indicates the primary key field of an entity class. The value of the * primary key field is the unique identifier for the entity in a {@link * PrimaryIndex}. * *

{@link PrimaryKey} may appear on at most one declared field per * class.

* *

Primary key values may be automatically assigned as sequential integers * using a {@link #sequence}. In this case the type of the key field is * restricted to a simple integer type.

* *

A primary key field may not be null, unless it is being assigned from a * sequence.

* *

Key Field Types

* *

The type of a key field must either be one of the following:

* *

Enum types and array types are not allowed.

* *

When using a composite key class containing more than one key field, each * field of the composite key class must be annotated with {@link KeyField} to * identify the storage order and default sort order. See {@link KeyField} for * an example and more information on composite keys.

* *

Key Sort Order

* *

Key field types, being simple types, have a well defined and reasonable * default sort order, described below. This sort order is based on a storage * encoding that allows a fast byte-by-byte comparison.

* * *

To override the default sort order, you can use a composite key class * that implements {@link Comparable}. This allows overriding the sort order * and is therefore useful even when there is only one key field in the * composite key class. See {@link Custom * Sort Order} for more information on sorting of composite keys.

* *

Inherited Primary Key

* *

If it does not appear on a declared field in the entity class, {@code * PrimaryKey} must appear on a field of an entity superclass. In the * following example, the primary key on the base class is used:

* *
 * {@literal @Persistent}
 * class BaseClass {
 *     {@literal @PrimaryKey}
 *     long id;
 *     ...
 * }
 * {@literal @Entity}
 * class Employee extends BaseClass {
 *     // inherits id primary key
 *     ...
 * }
* *

If more than one class with {@code PrimaryKey} is present in a class * hierarchy, the key in the most derived class is used. In this case, primary * key fields in superclasses are "shadowed" and are not persistent. In the * following example, the primary key in the base class is not used and is not * persistent:

*
 * {@literal @Persistent}
 * class BaseClass {
 *     {@literal @PrimaryKey}
 *     long id;
 *     ...
 * }
 * {@literal @Entity}
 * class Employee extends BaseClass {
 *     // overrides id primary key
 *     {@literal @PrimaryKey}
 *     String uuid;
 *     ...
 * }
* *

Note that a {@code PrimaryKey} is not allowed on entity subclasses. The * following is illegal and will cause an {@code IllegalArgumentException} when * trying to store an {@code Employee} instance:

*
 * {@literal @Entity}
 * class Person {
 *     {@literal @PrimaryKey}
 *     long id;
 *     ...
 * }
 * {@literal @Entity}
 * class Employee extends Person {
 *     {@literal @PrimaryKey}
 *     String uuid;
 *     ...
 * }
* * @author Mark Hayes */ @Documented @Retention(RUNTIME) @Target(FIELD) public @interface PrimaryKey { /** * The name of a sequence from which to assign primary key values * automatically. If a non-empty string is specified, sequential integers * will be assigned from the named sequence. * *

A single sequence may be used for more than one entity class by * specifying the same sequence name for each {@code PrimaryKey}. For * each named sequence, a {@link com.sleepycat.db.Sequence} will be used to * assign key values. For more information on configuring sequences, see * {@link EntityStore#setSequenceConfig EntityStore.setSequenceConfig}.

* *

To use a sequence, the type of the key field must be a primitive * integer type ({@code byte}, {@code short}, {@code int} or {@code long}) * or the primitive wrapper class for one of these types. A composite key * class may also be used to override sort order, but it may contain only a * single key field that has one of the types previously mentioned.

* *

When an entity with a primary key sequence is stored using one of the * put methods in the {@link PrimaryIndex}, a new key will be * assigned if the primary key field in the entity instance is null (for a * reference type) or zero (for a primitive integer type). Specifying zero * for a primitive integer key field is allowed because the initial value * of the sequence is one (not zero) by default. If the sequence * configuration is changed such that zero is part of the sequence, then * the field type must be a primitive wrapper class and the field value * must be null to cause a new key to be assigned.

* *

When one of the put methods in the {@link PrimaryIndex} * is called and a new key is assigned, the assigned value is returned to * the caller via the key field of the entity object that is passed as a * parameter.

*/ String sequence() default ""; }