Here is the Bean class. Below is what was produced.
public class RemoteEntirexBean extends ACTSEntireXClient implements SessionBean
{
public static final String s_classname = RemoteEntirexBean.class.getName();
static
{
Logger.addLoggingForClass(s_classname);
}
//ACTSEntireXClient m_actsexclient = new ACTSEntireXClient();
public String ejbConnectionTest(String p_testString)
{
Logger.debug(s_classname,"recieved test String '" + p_testString + "'");
return p_testString;
}
/**
* Method EClient getEClient(EClient pEClient)
* @param String pUserId
* @returns void
*
public EClient getEClient(String p_UserId)
{
return m_actsexclient.getEClient(p_UserId);
}
public boolean passwordStatus(EClient p_eClient,String p_Status)
{
return m_actsexclient.passwordStatus(p_eClient, p_Status);
}
public boolean updateEClient(EClient p_eClient)
{
return m_actsexclient.updateEClient(p_eClient);
}
public EClient makeOrder(EClient p_eClient)
{
return m_actsexclient.makeOrder(p_eClient);
}
public boolean storeOrder(Order p_order)
{
return m_actsexclient.storeOrder(p_order);
}
public EClient makePayment(EClient p_eClient)
{
return m_actsexclient.makePayment(p_eClient);
}
public boolean storePayment(EClient p_eClient)
{
return m_actsexclient.storePayment(p_eClient);
}
public Stamp getStamp()
{
return m_actsexclient.getStamp();
}
*/
/**
*/
public RemoteEntirexBean()
{
Logger.info(s_classname,"RemoteEntirexBean ");
//System.out.println("RemoteEntirexBean ");
}
// session bean required methods
public void ejbCreate()
{
Logger.info(s_classname,"ejbCreate ");
//System.out.println("ejbCreate ");
}
public void ejbRemove()
{
Logger.info(s_classname,"ejbRemove ");
//System.out.println("ejbRemove ");
}
public void ejbActivate()
{
Logger.info(s_classname,"ejbActivate ");
//System.out.println("ejbActivate ");
}
public void ejbPassivate()
{
Logger.info(s_classname,"ejbPassivate ");
//System.out.println("ejbPassivate ");
}
public void setSessionContext(SessionContext sc)
{
Logger.info(s_classname,"setSessionContext ");
//System.out.println("setSessionContext ");
}
} // RemoteEntirexBean
/////What was produced was a file called RemoteEtirex.java
/*
* Generated by XDoclet - Do not edit!
*/
package removed on purpose;
/**
* Remote interface for RemoteEntirex.
* @xdoclet-generated at ${TODAY}
* @copyright The XDoclet Team
* @author XDoclet
* @version ${version}
*/
public interface RemoteEntirex
extends javax.ejb.EJBObject
{
}
Is that correct ? Isn't it supposed to have interfaces in it ?
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3850792#3850792
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3850792
-------------------------------------------------------
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
_______________________________________________
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development