Package com.centraview.administration.applicationsettings

Examples of com.centraview.administration.applicationsettings.AppSettingsLocalHome


      TicketLocalHome ticketHome = (TicketLocalHome)ic.lookup("local/Ticket");
      TicketLocal ticketRemote = (TicketLocal) ticketHome.create();
      ticketRemote.setDataSource(this.dataSource);

      // Used for getting the Default Owner ID.
      AppSettingsLocalHome appHome=(AppSettingsLocalHome)ic.lookup("local/AppSettings");
      AppSettingsLocal appRemote=(AppSettingsLocal)appHome.create();
      appRemote.setDataSource(this.dataSource);
      String strAssignedID = appRemote.getApplicationSettings("DEFAULTOWNER");
      appRemote = null;
      appHome = null;
View Full Code Here

TOP

Related Classes of com.centraview.administration.applicationsettings.AppSettingsLocalHome

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.