package cse308.swift.shared.beans; import java.util.ArrayList; public class ClientPortfolioHistory { /** * The clientID associated with this portfolioHistory */ private int clientID; /** * The transaction histroy for this client. */ private ArrayList history; /** * Get this portfolioHistory's history * @return The ArrayList of transactions for this portfolioHistory: ArrayList */ public ArrayList getHistory() { return history; } /** * Set this portfolioHistory's history * @param history The history of this portfolioHistory: ArrayList */ public void setHistory(ArrayList history) { this.history = history; } /** * Return the clientID of this user portfolioHistory * @return the clientID of this user portfolio: String */ public int getClientID() { return this.clientID; } /** * Sets the ClientID for this PortfolioHistory * @param initClientID the ClientID for this Portfolio: String */ public void setClientID(int initClientID) { this.clientID = initClientID; } }