Package com.ibm.demo.session.stateless

Examples of com.ibm.demo.session.stateless.LoanManagerRemote


      Context jndiContext = new InitialContext();  
      Object ref = jndiContext.lookup("LoanManagerHomeRemote");  
      LoanManagerHomeRemote home = (LoanManagerHomeRemote)
                      PortableRemoteObject.narrow(ref, LoanManagerHomeRemote.class);

      LoanManagerRemote loanmanager = home.create();
   
      // Get a list of all denied loans
      List deniedLoans = loanmanager.deniedLoans();
     
        if(deniedLoans!=null){
        //CustomerRemote customer = null;
          String customer = new String();
          System.out.println("Customers with denied loan applications:");
View Full Code Here

TOP

Related Classes of com.ibm.demo.session.stateless.LoanManagerRemote

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.