KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > ce > auction > command > CommandHandler


1 package org.hibernate.ce.auction.command;
2
3
4 /**
5  * A generic handler for EJB commands.
6  *
7  * @author Christian Bauer <christian@hibernate.org>
8  */

9 public interface CommandHandler {
10
11     public Command executeCommand(Command command)
12         throws CommandException;
13
14 }
15
Popular Tags