Package com.centraview.projects.projectlist

Examples of com.centraview.projects.projectlist.ProjectListsLocalHome


  public ProjectList getProjectList(int userID, HashMap info)
  {
    ProjectList projectList = null;
    try {
      InitialContext ic = CVUtility.getInitialContext();
      ProjectListsLocalHome home = (ProjectListsLocalHome)ic.lookup("local/ProjectLists");
      ProjectListsLocal remote = (ProjectListsLocal)home.create();
      remote.setDataSource(this.dataSource);
      projectList = (ProjectList)remote.getProjectList(userID, info);
    } catch (Exception e) {
      System.out.println("[Exception][ProjectFacadeEJB.getProjectList] Exception Thrown: " + e);
      e.printStackTrace();
View Full Code Here


  public TimeSlipList getAllTimeSlipList(int userID, HashMap info)
  {
    TimeSlipList timeSlipList = null;
    try {
      InitialContext ic = CVUtility.getInitialContext();
      ProjectListsLocalHome home = (ProjectListsLocalHome)ic.lookup("local/ProjectLists");
      ProjectListsLocal remote = (ProjectListsLocal)home.create();
      remote.setDataSource(this.dataSource);
      timeSlipList = (TimeSlipList)remote.getAllTimeSlipList(userID, info);
    } catch (Exception e) {
      System.out.println("[Exception][ProjectFacadeEJB.getAllTimeSlipList] Exception Thrown: " + e);
      e.printStackTrace();
View Full Code Here

  public TimeSlipList getTimeSlipListForProject(int userId, int projectId, HashMap info)
  {
    TimeSlipList timeSlipList = null;
    try {
      InitialContext ic = CVUtility.getInitialContext();
      ProjectListsLocalHome home = (ProjectListsLocalHome)ic.lookup("local/ProjectLists");
      ProjectListsLocal remote = (ProjectListsLocal)home.create();
      remote.setDataSource(this.dataSource);
      timeSlipList = (TimeSlipList)remote.getTimeSlipListForProject(userId, projectId, info);
    } catch (Exception e) {
      System.out
          .println("[Exception][ProjectFacadeEJB.getTimeSlipListForProject] Exception Thrown: " + e);
View Full Code Here

  public TimeSlipList getTimeSlipListForProject(int userId, int projectId)
  {
    TimeSlipList timeSlipList = null;
    try {
      InitialContext ic = CVUtility.getInitialContext();
      ProjectListsLocalHome home = (ProjectListsLocalHome)ic.lookup("local/ProjectLists");
      ProjectListsLocal remote = (ProjectListsLocal)home.create();
      remote.setDataSource(this.dataSource);
      timeSlipList = (TimeSlipList)remote.getTimeSlipListForProject(userId, projectId);
    } catch (Exception e) {
      System.out
          .println("[Exception][ProjectFacadeEJB.getTimeSlipListForProject] Exception Thrown: " + e);
View Full Code Here

TOP

Related Classes of com.centraview.projects.projectlist.ProjectListsLocalHome

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.