相关代码 |
|
package org.hibernate.auction.command; import java.io.Serializable; /** * The interface for generic commands between presentation and business tier. * * @author Christian Bauer */ public interface Command extends Serializable { public void execute() throws CommandException; }
相关资源 |
|