Package com.ibm.demo.session.stateful

Examples of com.ibm.demo.session.stateful.StatefulLoanManagerRemote.submitLoanApplication()


      birthdate = new Date();
      annualSalary = new Double(generator.nextDouble() * 150000.0 + 20000.0);
      loanAmount = new Double(generator.nextDouble() * 1000000.0 + 50000.0);
     
      try{
        loanmanager.submitLoanApplication(id, name, address, birthdate, sssNo, annualSalary, loanAmount);
        System.out.println("Submitting new loan application...");
        System.out.println("-> submit count is now = " + loanmanager.getSubmitCount());
      }catch (RemoteException re){
        re.printStackTrace();
      }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.