blob: c1a2b971e7f17cbbc81b6943ab6858540ee332cd [file] [log] [blame]
/*
* Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package com.sun.s1peqe.security.integration.bankadmin.daomanager;
import java.util.HashMap;
public class AccountDataObject implements java.io.Serializable
{
private String accountId="*****empty****";
private Double amount;
private HashMap permList;
public AccountDataObject(){}
public AccountDataObject(String id,Double amt,HashMap permList)
{
this.accountId=id;
this.amount=amt;
this.permList=permList;
}
public void setAccountID(String id){
accountId=id;
}
public void setAmount(Double amt){
amount=amt;
}
public void setPermissionList(HashMap list){
permList=list;
}
public String getAccountID(){
return accountId;
}
public Double getAmount(){
return amount;
}
public HashMap getPermissionList(){
return permList;
}
public String toString(){
return new String(getAccountID());
}
}