hostslocalhome.java
来自「openacs source for CPE wan management」· Java 代码 · 共 43 行
JAVA
43 行
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 + =
减小字号Ctrl + -
显示快捷键?