Package com.centraview.administration.cvattic

Source Code of com.centraview.administration.cvattic.AtticList

/*
* $RCSfile: AtticList.java,v $    $Revision: 1.2 $  $Date: 2005/09/01 15:31:05 $ - $Author: mcallist $
*
* 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.administration.cvattic;

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.common.CVUtility;
import com.centraview.common.Constants;
import com.centraview.common.DisplayList;
import com.centraview.common.EntityListElement;
import com.centraview.cvattic.CvAttic;
import com.centraview.cvattic.CvAtticHome;

/**
* This class is for storing the AtticList List
*
* @author Amit Gandhe
*/
public class AtticList extends DisplayList
{
  private static Logger logger = Logger.getLogger(AtticList.class);
  private String sortMember ;
  private String primaryMember ;
  private String primaryTable ="listviews";
  private String PrimaryMemberType="viewid";
  //  private String searchString  ;
  private int totalNoofRecords ;
  private int beginIndex;
  private int endIndex;
  private int startAT;
  private int endAT;
  private String moduleName;
  protected static boolean dirtyFlag = false;

  /**
   *
   * Constructor
   */
  public AtticList() {
    columnMap=new HashMap();

    columnMap.put("AtticID", new Integer(15));
    columnMap.put("Title", new Integer(15));
    columnMap.put("Module", new Integer(15));
    columnMap.put("Record", new Integer(15));
    columnMap.put("Owner", new Integer(15));
    columnMap.put("Deleted", new Integer(15));

    this.setPrimaryMember("Title")

  }

  /**
   * 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 primaryTable ;
  }


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

  /**
    * 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();

    CvAtticHome cvAtticHome =(CvAtticHome)CVUtility.getHomeObject("com.centraview.cvattic.CvAtticHome","CvAttic");
    try
    {
      //call to EJB server
      CvAttic remote=(CvAttic)cvAtticHome.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]);
          remote.delete(individualID,elementID,Constants.CV_ATTIC);
        }//end of if(recordID[i] != null && !recordID[i].equals(""))
      }//end of for (int i=0; i<rowId.length; i++)
      // User-rights for DeleteMOC ?
    }//end of try
    catch( CreateException e )
    {
      logger.error("[Exception] AtticList.deleteElement( int indvID, String rowId[] )", e);
      throw new CommunicationException(e.getMessage());
    }//end of catch( CreateException e )

    this.setDirtyFlag(true);

    return resultDeleteLog;
  }// end of deleteElement

  /**
   * this method  is for deleting a record from Attic table
   *
   * @param   key 
   */
  public void  deleteElement( int indvID, String key ) throws CommunicationException,NamingException
  {
    int elementID = Integer.parseInt(key);
    CvAtticHome cvAtticHome =(CvAtticHome)CVUtility.getHomeObject("com.centraview.cvattic.CvAtticHome","CvAttic");
    try
    {
      CvAttic remote=(CvAttic)cvAtticHome.create();
      remote.setDataSource(this.dataSource);
      remote.delete(indvID,elementID,Constants.CV_ATTIC);
    }
    catch(Exception e)
    {
      logger.error("[Exception] AtticList.deleteElement( int indvID, String key )", e);
    }
  }

  /**
  * this method  is for addelements to the collection
  */

  //not in Display list
  /*public void addElement( String  ID , EntityListElement value )
  {
  put( ID , value );
  }*/



  /**
   *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 ) {
    primaryTable = value ;
  }



  /**
   * this method  is to addEntityElement
   *
   * @param   value 
   */
  public void addEntityElement( EntityListElement value ) {
  }



  /**
   * this method  is for retrieving getEntityElement
   *
   * @param   String 
   */
  public void getEntityElement( 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;
  }
 
 
  public void  restoreElement( String key )
  {
    int elementID = Integer.parseInt(key);

    try {
      CvAtticHome home=(CvAtticHome)CVUtility.getHomeObject("com.centraview.cvattic.CvAtticHome","CvAttic");//call to FaqEJB
      CvAttic admin=(CvAttic)home.create();
      admin.setDataSource(this.dataSource);

      admin.restore(1,elementID,Constants.CV_ATTIC);
      // TODO the restore method needs to take the invidualID and pass it on, fubar user-rights
    }
    catch(Exception e)
    {
      System.out.println("[Exception][AtticList.restoreElement] Exception Thrown: "+e);
    }
  }
}
TOP

Related Classes of com.centraview.administration.cvattic.AtticList

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.