/*- * See the file LICENSE for redistribution information. * * Copyright (c) 2000, 2010 Oracle and/or its affiliates. All rights reserved. * */ package com.sleepycat.bind; import com.sleepycat.db.DatabaseEntry; /** * A binding between a key-value entry pair and an entity object. * *
WARNING: Binding instances are typically shared by multiple * threads and binding methods are called without any special synchronization. * Therefore, bindings must be thread safe. In general no shared state should * be used and any caching of computed values must be done with proper * synchronization.
* * @author Mark Hayes */ public interface EntityBinding