/*- * See the file LICENSE for redistribution information. * * Copyright (c) 2002-2005 * Sleepycat Software. All rights reserved. * * $Id: SecondaryKeyCreator.java,v 12.1 2005/06/16 20:23:03 bostic Exp $ */ package com.sleepycat.db; public interface SecondaryKeyCreator { boolean createSecondaryKey(SecondaryDatabase secondary, DatabaseEntry key, DatabaseEntry data, DatabaseEntry result) throws DatabaseException; }