00001 /*- 00002 * See the file LICENSE for redistribution information. 00003 * 00004 * Copyright (c) 2000-2005 00005 * Sleepycat Software. All rights reserved. 00006 * 00007 * $Id: EntityBinding.java,v 12.1 2005/01/31 19:27:29 mark Exp $ 00008 */ 00009 00010 package com.sleepycat.bind; 00011 00012 import com.sleepycat.db.DatabaseEntry; 00013 00019 public interface EntityBinding { 00020 00030 Object entryToObject(DatabaseEntry key, DatabaseEntry data); 00031 00039 void objectToKey(Object object, DatabaseEntry key); 00040 00048 void objectToData(Object object, DatabaseEntry data); 00049 }