📄 hostslocalhome.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 Hosts enterprise bean. */public interface HostsLocalHome extends EJBLocalHome { HostsLocal findByPrimaryKey(Object key) throws FinderException; public HostsLocal create(Integer hwid, String serialno, String url) throws CreateException; /** * */ Collection findBySerialno(String serialno) throws FinderException; /** * */ Collection findByUrl(String url) throws FinderException; Collection findAll() throws FinderException; Collection findByPartialSN(Integer hwid, String snprefix) throws FinderException; org.openacs.HostsLocal findByIp(java.lang.String ip) throws javax.ejb.FinderException; HostsLocal findByHwidAndSn(Integer hwid, String sn) throws FinderException; Collection findByIpM(String ip) throws FinderException; Collection findByCustomerId(String customerId) throws FinderException; }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -