📄 softwarelocalhome.java
字号:
package org.openacs;
import java.util.Collection;
import javax.ejb.CreateException;
import javax.ejb.EJBLocalHome;
import javax.ejb.FinderException;
/**
* This is the local-home interface for Software enterprise bean.
*/
public interface SoftwareLocalHome extends EJBLocalHome {
SoftwareLocal findByPrimaryKey(SoftwarePK key) throws FinderException;
public SoftwareLocal create(Integer hwid, String version, String minversion, String url) throws CreateException;
/**
*
*/
Collection findByHardware(Integer hardware) throws FinderException;
/**
*
*/
Collection findByVersion(String version) throws FinderException;
Collection findAll() throws javax.ejb.FinderException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -