KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.hibernate.ce.auction.command;
2
3 import java.io.Serializable JavaDoc;
4
5 /**
6  * The interface for generic commands between presentation and business tier.
7  *
8  * @author Christian Bauer <christian@hibernate.org>
9  */

10 public interface Command extends Serializable JavaDoc {
11     public void execute() throws CommandException;
12 }
13
Popular Tags