conflictlocalhome.java
来自「<Java网络程序设计 J2EE>随书源码」· Java 代码 · 共 28 行
JAVA
28 行
package org.impact.stars.conflictmd.conflict.ejb;
import javax.ejb.*;
//
import java.util.Collection;
import java.sql.Date;
/**
*
* @author cai
* Created Aug 28, 2001 10:49:20 PM
* Code generated by the Forte for Java EJB Module
*/
public interface ConflictLocalHome extends EJBLocalHome {
/**
*/
ConflictLocal create(String conflictID, String name, Date detecttime,
Date resolvetime, String scale, String type, String status,
String pstakeholder, String strategy, String description) throws CreateException;
public ConflictLocal findByPrimaryKey(String ConflictID) throws FinderException;
public Collection findByName(String name) throws FinderException;
public Collection findByScale (String scl) throws FinderException;
public Collection findByType (String typ) throws FinderException;
public Collection findByStatus (String sts) throws FinderException;
public Collection findByPstakeholder (String pstk) throws FinderException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?