Java Reference
In-Depth Information
The session bean façade interface CatalogFaçade.java gets generated. The @Remote
annotation specifies a remote interface. CatalogFaçade.java is listed next:
import javax.ejb.Remote;
@Remote
public interface CatalogFaçade{
void create(String catalogId);
void remove(CatalogBean catalogBean);
CatalogBean findByCatalogId(java.lang.String param1 );
java.util.List <CatalogBean> findByJournal(java.lang.String
param1);
}
Select View | Refresh to add the session bean interface to the EJB2toEJB3
conversion project. The session bean façade class and façade interface may require
some reformatting.
 
Search WWH ::




Custom Search