hibernate in action 源码 caveatemptor-0.9.5初学者很适合

源代码在线查看: command.java

软件大小: 3254 K
上传用户: thor
关键词: caveatemptor hibernate action in
下载地址: 免注册下载 普通下载 VIP

相关代码

				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;
				}
							

相关资源