📄 posthome.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -