/*- * See the file LICENSE for redistribution information. * * Copyright (c) 2002,2007 Oracle. All rights reserved. * * $Id: SecondaryKeyCreator.java,v 12.5 2007/05/17 15:15:41 bostic Exp $ */ package com.sleepycat.db; public interface SecondaryKeyCreator { boolean createSecondaryKey(SecondaryDatabase secondary, DatabaseEntry key, DatabaseEntry data, DatabaseEntry result) throws DatabaseException; }