Package com.centraview.account.expense

Source Code of com.centraview.account.expense.ExpenseList

/*
* $RCSfile: ExpenseList.java,v $    $Revision: 1.1.1.1 $  $Date: 2005/04/28 20:26:13 $ - $Author: mking_cv $
*
* The contents of this file are subject to the Open Software License
* Version 2.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.centraview.com/opensource/license.html
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
* License for the specific language governing rights and limitations
* under the License.
*
* The Original Code is: CentraView Open Source.
*
* The developer of the Original Code is CentraView.  Portions of the
* Original Code created by CentraView are Copyright (c) 2004 CentraView,
* LLC; All Rights Reserved.  The terms "CentraView" and the CentraView
* logos are trademarks and service marks of CentraView, LLC.
*/
package com.centraview.account.expense;

import java.rmi.RemoteException;
import java.util.ArrayList;
import java.util.HashMap;

import javax.ejb.CreateException;
import javax.naming.CommunicationException;
import javax.naming.NamingException;

import org.apache.log4j.Logger;

import com.centraview.account.accountfacade.AccountFacade;
import com.centraview.account.accountfacade.AccountFacadeHome;
import com.centraview.common.AuthorizationFailedException;
import com.centraview.common.CVUtility;
import com.centraview.common.DisplayList;

/**
* This class is for storing the expense List.
*
* @author Shilpa Patil
*/
public class ExpenseList extends DisplayList
{

  private String sortMember ;
  private String primaryMember ;
  private String primaryTable ="expense";
  private String PrimaryMemberType="ExpenseID";
  private int totalNoofRecords ;
  private int beginIndex;
  private int endIndex;
  private int startAT;
  private int endAT;
  protected static boolean dirtyFlag = false;
  private static Logger logger = Logger.getLogger(ExpenseList.class);

  /**
   *
   * Constructor
   */
  public ExpenseList()
  {
    primaryTable ="expense";
    PrimaryMemberType="ExpenseID";

    columnMap=new HashMap();
    columnMap.put("ExpenseID",new Integer(15));
    columnMap.put("Amount",new Integer(25));
    columnMap.put("Created",new Integer(50));
    columnMap.put("Reference",new Integer(50));
    columnMap.put("Status",new Integer(50));
    columnMap.put("Creator",new Integer(50));

    this.setPrimaryMember("ExpenseID");
  }

  /**
   * this method  is for retrieving whether list is dirty
   *
   * @return   boolean
   */
  public boolean getDirtyFlag()
  {
    return   dirtyFlag ;
  }


  /**
   * this method  sets the list dirty
   *
   * @param   value
   */
  public void setDirtyFlag( boolean value )
  {
    dirtyFlag = value ;
  }


  /**
   * this method  returns the start parameter
   *
   * @return    int
   */
  public int getStartAT()
  {
    return  startAT ;
  }


  /**
   * this method  returns the end parameter
   *
   * @return     int
   */
  public int getEndAT()
  {
    return  endAT ;
  }



  /**
   * this method  returns the BeginIndex parameter
   *
   * @return   int
   */
  public int getBeginIndex()
  {
    return  beginIndex ;
  }


  /**
   * this method  returns the EndIndex parameter
   *
   * @return     int
   */
  public int getEndIndex()
  {
     return  endIndex ;
  }



  /**
   * this method  is for RecordsPerPage
   *
   * @param   value
   */
  public  void  setRecordsPerPage( int value )
  {
    recordsPerPage = value ;
  }


  /**
   * this method  is for setting TotalNoOfRecords
   *
   * @param   value
   */
  public  void  setTotalNoOfRecords(int value )
  {
    totalNoOfRecords = value;
  }

  /**
   * this method  sets the ListID
   *
   * @param   value
   */
  public void setListID( long value )
  {
    super.ListID = value ;
  }


  /**
   * return columnMap used in listing
   *
   * @return  HashMap
   */
  public HashMap getColumnMap()
  {
    return  columnMap;
  }


  /**
   * this method  sets the SortMember
   *
   * @param   value
   */
  public void setSortMember( String value )
  {
    sortMember = value ;
  }



  /**
   * this method  sets ListType
   *
   * @param   value
   */
  public void setListType( String value )
  {
    super.listType = value ;
  }



  /**
   * this method  returns SearchString
   *
   * @return   String
   */
  public String getSearchString()
  {
    return   searchString ;
  }



  /**
   * this method  sets setSearchString
   *
   * @param   value
   */
  public void setSearchString( String value )
  {
     this.searchString = value ;
  }



  /**
   * this method  returns ListType
   *
   * @return  String
   */
  public String getListType()
  {
    return listType ;
  }



  /**
   * this method  returns PrimaryMemberType
   *
   * @return   String
   */
  public String getPrimaryMemberType()
  {
    return PrimaryMemberType ;
  }



  /**
   * this method  sets PrimaryMemberType
   *
   * @param   value
   */
  public void setPrimaryMemberType( String value )
  {
     PrimaryMemberType = value  ;
  }



  /**
   * this method  returns TotalNoofRecords
   *
   * @return int
   */
  public int getTotalNoofRecords()
  {
    return totalNoofRecords;
  }



  /**
   * this method  returns PrimaryTable
   *
   * @return  String
   */
  public String getPrimaryTable()
  {
    return this.primaryTable ;
  }


  /**
   * this method  returns SortMember
   *
   * @return String
   */
  public String getSortMember()
  {
    return sortMember ;
  }


  /**
   *this method  is to duplicate  elements
   *
   */
  public void duplicateElement()
  {

  }


  /**
   * this method  is to set PrimaryMember
   *
   * @param   value
   */
  public void setPrimaryMember( String value )
  {
    primaryMember = value ;
  }


  /**
   * this method  is to set PrimaryTable
   *
   * @param   value
   */
  public void setPrimaryTable( String value )
  {
    this.primaryTable = value ;
  }



  /**
   * this method  is to add Inventory Element
   *
   * @param   value
   */
  public void addExpenseElement( ExpenseListElement value )
  {
  }



  /**
   * this method  is for retrieving getEntityElement
   *
   * @param   String
   */
  public void getExpenseElement( String value )
  {
  }



  /**
   *
   * this method  is for setting StartAT
   * @param   startAT
   */
  public void setStartAT( int startAT )
  {
    this.startAT = startAT;
  }



  /**
   * this method  sets the EndAT parameter
   *
   * @param   EndAt
   */
  public void setEndAT( int EndAt )
  {
    this.endAT = EndAt;
  }


  /**
   * this method  sets BeginIndex
   *
   * @param   beginIndex
   */
  public void setBeginIndex( int beginIndex )
  {
    this.beginIndex = beginIndex ;
  }


  /**
   * this method  sets EndIndex
   *
   * @param   endIndex
   */
  public void setEndIndex( int endIndex )
  {
    this.endIndex = endIndex;
  }


  /**
   * this method  retrieves the PrimaryMember
   *
   * @return   String
   */
  public String getPrimaryMember()
  {
     return primaryMember;
  }


  /**
   * This method  is for deleting a record from GLAccounts table.
   * For time being its empty method.
   * @param   key
   */
  public void  deleteElement(int indvID, String key) throws CommunicationException, NamingException
  {

    if (key != null)
    {
      int  expID = Integer.parseInt(key);
      AccountFacadeHome accountFacadeHome = (AccountFacadeHome)CVUtility.getHomeObject("com.centraview.account.accountfacade.AccountFacadeHome","AccountFacade");
      try
      {
        AccountFacade remote =(AccountFacade)accountFacadeHome.create();
        remote.setDataSource(this.dataSource);

        remote.deleteExpense(expID,indvID);
      } catch (Exception e)
      {
        logger.error("[Exception] ExpenseList.deleteElement( int indvID, String key )", e);
      }
    }
  }
  /**
    * We will process the rowId. Incase if we don't have the right to DELETE a record then it will raise the AuthorizationException.
    * We will catch the Exception and Log the Description of the Exception.
    *
    * @param individualID  ID for the Individual who is try to delete the record.
    * @param recordID[] A String array of the recordID which we are try to delete it from database.
    * @return resultDeleteLog A Collection of the Error Message while deleting a particular record.
    */
  public ArrayList deleteElement(int individualID, String recordID[]) throws CommunicationException,NamingException,RemoteException
  {
    ArrayList resultDeleteLog = new ArrayList();
    AccountFacadeHome accountFacadeHome = (AccountFacadeHome)CVUtility.getHomeObject("com.centraview.account.accountfacade.AccountFacadeHome","AccountFacade");
    try
    {
      //call to EJB server
      AccountFacade remote =(AccountFacade)accountFacadeHome.create();
      remote.setDataSource(this.dataSource);
      for (int i=0; i<recordID.length; i++)
      {
        if(recordID[i] != null && !recordID[i].equals("")){
          int elementID = Integer.parseInt(recordID[i]);
          try{
            remote.deleteExpense(elementID,individualID);
          }//end of try block
          catch(AuthorizationFailedException ae){
            String errorMessage = ae.getExceptionDescription();
            resultDeleteLog.add(errorMessage);
          }//end of catch block
        }//end of if(recordID[i] != null && !recordID[i].equals(""))
      }//end of for (int i=0; i<recordID.length; i++)
    }//end of try block
    catch( CreateException ce )
    {
      logger.error("[Exception] ExpenseList.deleteElement( int indvID, String rowId[] ) ", ce);
      throw new CommunicationException(ce.getMessage());
    }//end of catch( CreateException e )
    this.setDirtyFlag(true);

    return resultDeleteLog;
  }// end of deleteElement

}
TOP

Related Classes of com.centraview.account.expense.ExpenseList

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.