00001 /*- 00002 * See the file LICENSE for redistribution information. 00003 * 00004 * Copyright (c) 2002-2005 00005 * Sleepycat Software. All rights reserved. 00006 * 00007 * $Id: SecondaryKeyCreator.java,v 12.1 2005/06/16 20:23:03 bostic Exp $ 00008 */ 00009 00010 package com.sleepycat.db; 00011 00012 public interface SecondaryKeyCreator { 00013 boolean createSecondaryKey(SecondaryDatabase secondary, 00014 DatabaseEntry key, 00015 DatabaseEntry data, 00016 DatabaseEntry result) 00017 throws DatabaseException; 00018 }