Berkeley DB
version 4.8.30

com.sleepycat.bind.serial
Class SerialSerialKeyCreator<PK,D,SK>

java.lang.Object
  extended by com.sleepycat.bind.serial.SerialSerialKeyCreator<PK,D,SK>
All Implemented Interfaces:
ForeignKeyNullifier, SecondaryKeyCreator

public abstract class SerialSerialKeyCreator<PK,D,SK>
extends Object
implements SecondaryKeyCreator, ForeignKeyNullifier

A abstract key creator that uses a serial key and a serial data entry. This class takes care of serializing and deserializing the key and data entry automatically. The following abstract method must be implemented by a concrete subclass to create the index key using these objects

If ForeignKeyDeleteAction.NULLIFY was specified when opening the secondary database, the following method must be overridden to nullify the foreign index key. If NULLIFY was not specified, this method need not be overridden.

See Also:
Class Evolution

Field Summary
protected  SerialBinding<D> dataBinding
           
protected  SerialBinding<SK> indexKeyBinding
           
protected  SerialBinding<PK> primaryKeyBinding
           
 
Constructor Summary
SerialSerialKeyCreator(ClassCatalog classCatalog, Class<PK> primaryKeyClass, Class<D> dataClass, Class<SK> indexKeyClass)
          Creates a serial-serial key creator.
SerialSerialKeyCreator(SerialBinding<PK> primaryKeyBinding, SerialBinding<D> dataBinding, SerialBinding<SK> indexKeyBinding)
          Creates a serial-serial entity binding.
 
Method Summary
abstract  SK createSecondaryKey(PK primaryKey, D data)
          Creates the index key object from primary key and data objects.
 boolean createSecondaryKey(SecondaryDatabase db, DatabaseEntry primaryKeyEntry, DatabaseEntry dataEntry, DatabaseEntry indexKeyEntry)
          Creates a secondary key entry, given a primary key and data entry.
 D nullifyForeignKey(D data)
          Clears the index key in a data object.
 boolean nullifyForeignKey(SecondaryDatabase db, DatabaseEntry dataEntry)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

primaryKeyBinding

protected SerialBinding<PK> primaryKeyBinding

dataBinding

protected SerialBinding<D> dataBinding

indexKeyBinding

protected SerialBinding<SK> indexKeyBinding
Constructor Detail

SerialSerialKeyCreator

public SerialSerialKeyCreator(ClassCatalog classCatalog,
                              Class<PK> primaryKeyClass,
                              Class<D> dataClass,
                              Class<SK> indexKeyClass)
Creates a serial-serial key creator.

Parameters:
classCatalog - is the catalog to hold shared class information and for a database should be a StoredClassCatalog.
primaryKeyClass - is the primary key base class.
dataClass - is the data base class.
indexKeyClass - is the index key base class.

SerialSerialKeyCreator

public SerialSerialKeyCreator(SerialBinding<PK> primaryKeyBinding,
                              SerialBinding<D> dataBinding,
                              SerialBinding<SK> indexKeyBinding)
Creates a serial-serial entity binding.

Parameters:
primaryKeyBinding - is the primary key binding.
dataBinding - is the data binding.
indexKeyBinding - is the index key binding.
Method Detail

createSecondaryKey

public boolean createSecondaryKey(SecondaryDatabase db,
                                  DatabaseEntry primaryKeyEntry,
                                  DatabaseEntry dataEntry,
                                  DatabaseEntry indexKeyEntry)
Description copied from interface: SecondaryKeyCreator
Creates a secondary key entry, given a primary key and data entry.

A secondary key may be derived from the primary key, primary data, or a combination of the primary key and data. For secondary keys that are optional, the key creator method may return false and the key/data pair will not be indexed. To ensure the integrity of a secondary database the key creator method must always return the same result for a given set of input parameters.

Specified by:
createSecondaryKey in interface SecondaryKeyCreator
Parameters:
db - the database to which the secondary key will be added. This parameter is passed for informational purposes but is not commonly used.

primaryKeyEntry - the primary key entry. This parameter must not be modified by this method.

dataEntry - the primary data entry. This parameter must not be modified by this method.

indexKeyEntry - the secondary key created by this method.

Returns:
true if a key was created, or false to indicate that the key is not present.


nullifyForeignKey

public boolean nullifyForeignKey(SecondaryDatabase db,
                                 DatabaseEntry dataEntry)
Specified by:
nullifyForeignKey in interface ForeignKeyNullifier

createSecondaryKey

public abstract SK createSecondaryKey(PK primaryKey,
                                      D data)
Creates the index key object from primary key and data objects.

Parameters:
primaryKey - is the deserialized source primary key entry, or null if no primary key entry is used to construct the index key.
data - is the deserialized source data entry, or null if no data entry is used to construct the index key.
Returns:
the destination index key object, or null to indicate that the key is not present.

nullifyForeignKey

public D nullifyForeignKey(D data)
Clears the index key in a data object.

On entry the data parameter contains the index key to be cleared. It should be changed by this method such that createSecondaryKey(com.sleepycat.db.SecondaryDatabase, com.sleepycat.db.DatabaseEntry, com.sleepycat.db.DatabaseEntry, com.sleepycat.db.DatabaseEntry) will return false. Other fields in the data object should remain unchanged.

Parameters:
data - is the source and destination data object.
Returns:
the destination data object, or null to indicate that the key is not present and no change is necessary. The data returned may be the same object passed as the data parameter or a newly created object.

Berkeley DB
version 4.8.30

Copyright (c) 1996-2009 Oracle. All rights reserved.