You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package org.poopki.duckdns.user_db;
|
|
|
|
|
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.Map;
|
|
|
|
import java.util.UUID;
|
|
|
|
|
|
|
|
public class AccountArray {
|
|
|
|
private static Map<UUID, Account> m_AccountArray = new HashMap<UUID, Account>();
|
|
|
|
|
|
|
|
public void transfer(UUID Src, UUID Des, int Amount){ // 송금 method
|
|
|
|
Account m_Src = m_AccountArray.get(Src);
|
|
|
|
Account m_Des = m_AccountArray.get(Des);
|
|
|
|
|
|
|
|
if(m_Src.withdraw(Amount)){ //인출 성공시 입금
|
|
|
|
m_Des.credit(Amount);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getAccountInfo(UUID uuid) { // DB backup시 account 정보 접근 method
|
|
|
|
Account m_Account = m_AccountArray.get(uuid);
|
|
|
|
return m_Account.getBalance();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void putAccountInfo(UUID uuid, int Amount) { //AccountArray 생성
|
|
|
|
m_AccountArray.put(uuid, new Account(Amount));
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setAccountInfo(UUID uuid, int Amount) {
|
|
|
|
Account m_Account = m_AccountArray.get(uuid);
|
|
|
|
m_Account.setBalance(Amount);
|
|
|
|
}
|
|
|
|
}
|