Package org.jboss.test.dbtest.interfaces

Examples of org.jboss.test.dbtest.interfaces.MyObject


    public String ejbCreate(String pk) throws RemoteException, CreateException {
    return ejbCreate(true, (byte)1, (short)2, (int)3, (long)4, (float)5.6,
      (double)7.8, /*'9',*/ pk, new Date(System.currentTimeMillis()),
        new Time(System.currentTimeMillis()),
            new Timestamp(System.currentTimeMillis()), new MyObject());
  }
View Full Code Here


      getLog().debug(++test + "- " + "Date " + allTypes.getDate() + " OK");
      getLog().debug(++test + "- " + "Time " + allTypes.getTime() + " OK");
      getLog().debug(++test + "- " + "Timestamp " + allTypes.getTimestamp() + " OK");

      getLog().debug(++test + "- " + "MyObject ");
      MyObject obj = allTypes.getObject();
      getLog().debug("OK");

      getLog().debug(++test + "- " + "Creating Record beans and adding them to the Collection in Alltypes..");
      RecordHome recordHome = (RecordHome)ctx.lookup("Record");
View Full Code Here

TOP

Related Classes of org.jboss.test.dbtest.interfaces.MyObject

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.