posthome.java
来自「用java编写的留言版」· Java 代码 · 共 35 行
JAVA
35 行
package com.bitterjava.bbs.ejb;
/**
* This is a Home interface for the Entity Bean
*/
public interface PostHome extends javax.ejb.EJBHome {
/**
* create method for a CMP entity bean
* @return com.bitterjava.bbs.ejb.Post
* @param argBoardName java.lang.String
* @param argMessageId int
* @param argThreadID int
* @exception javax.ejb.CreateException The exception description.
* @exception java.rmi.RemoteException The exception description.
*/
com.bitterjava.bbs.ejb.Post create(java.lang.String argBoardName, int argPostId, int argThreadID) throws javax.ejb.CreateException, java.rmi.RemoteException;
/**
* findByPrimaryKey method comment
* @return com.bitterjava.bbs.ejb.Post
* @param key com.bitterjava.bbs.ejb.PostKey
* @exception java.rmi.RemoteException The exception description.
* @exception javax.ejb.FinderException The exception description.
*/
public java.util.Enumeration findAllForThread(String boardName, int threadID) throws java.rmi.RemoteException, javax.ejb.FinderException;
/**
* findByPrimaryKey method comment
* @return com.bitterjava.bbs.ejb.Post
* @param key com.bitterjava.bbs.ejb.PostKey
* @exception java.rmi.RemoteException The exception description.
* @exception javax.ejb.FinderException The exception description.
*/
com.bitterjava.bbs.ejb.Post findByPrimaryKey(com.bitterjava.bbs.ejb.PostKey key) throws java.rmi.RemoteException, javax.ejb.FinderException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?