~ubuntu-branches/ubuntu/wily/libhibernate3-java/wily-proposed

« back to all changes in this revision

Viewing changes to src/org/hibernate/proxy/EntityNotFoundDelegate.java

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2007-10-14 14:43:34 UTC
  • Revision ID: james.westby@ubuntu.com-20071014144334-eamc8i0q10gs1aro
Tags: upstream-3.2.5
ImportĀ upstreamĀ versionĀ 3.2.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.hibernate.proxy;
 
2
 
 
3
import java.io.Serializable;
 
4
 
 
5
/**
 
6
 * Delegate to handle the scenario of an entity not found by a specified id.
 
7
 *
 
8
 * @author Steve Ebersole
 
9
 */
 
10
public interface EntityNotFoundDelegate {
 
11
        public void handleEntityNotFound(String entityName, Serializable id);
 
12
}