1 /*- 2 * See the file LICENSE for redistribution information. 3 * 4 * Copyright (c) 2002,2006 Oracle. All rights reserved. 5 * 6 * $Id: SecondaryKeyCreator.java,v 1.10 2006/10/30 21:14:12 bostic Exp $ 7 */ 8 9 package com.sleepycat.je; 10 11 /** 12 * Javadoc for this public method is generated via 13 * the doc templates in the doc_src directory. 14 */ 15 public interface SecondaryKeyCreator { 16 17 /** 18 * Javadoc for this public method is generated via 19 * the doc templates in the doc_src directory. 20 */ 21 public boolean createSecondaryKey(SecondaryDatabase secondary, 22 DatabaseEntry key, 23 DatabaseEntry data, 24 DatabaseEntry result) 25 throws DatabaseException; 26 } 27