/*- * See the file LICENSE for redistribution information. * * Copyright (c) 1999-2002 * Sleepycat Software. All rights reserved. * * $Id: DbSecondaryKeyCreate.java 2904 2003-11-20 22:14:35Z toshok $ */ package com.sleepycat.db; /* * This is used as a callback by Db.associate. */ public interface DbSecondaryKeyCreate { public int secondary_key_create(Db secondary, Dbt key, Dbt data, Dbt result) throws DbException; } // end of DbSecondaryKeyCreate.java