Package com.centraview.account.expense

Examples of com.centraview.account.expense.ExpenseLocalHome.create()


    if (!CVUtility.isModuleVisible("Expense", userID, this.dataSource))
      throw new AuthorizationFailedException("Expense- createExpense");
    try {
      InitialContext ic = CVUtility.getInitialContext();
      ExpenseLocalHome home = (ExpenseLocalHome) ic.lookup("local/Expense");
      ExpenseLocal expense = home.create(expenseVO, userID, this.dataSource);
      expense.setDataSource(this.dataSource);
      expenseVO = expense.getExpenseVO();
    } catch (Exception e) {
      logger.error("[createExpense]: Exception", e);
    }
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.