Package de.willuhn.util

Examples of de.willuhn.util.History


    if (msg.getType() == HBCITraceMessage.Type.ID)
    {
      current = history.get(msg.getData());
      if (current == null)
      {
        current = new History(100);
        history.put(msg.getData(),current);
      }
     
      return;
    }
View Full Code Here


   * @param id die ID. Typischerweise die des Konto.
   * @return der HBCI-Trace.
   */
  public List<HBCITraceMessage> getTrace(String id)
  {
    History h = this.history.get(id);
    List<HBCITraceMessage> list = new ArrayList<HBCITraceMessage>();
   
    if (h != null)
      list.addAll(h.elements());
   
    return list;
  }
View Full Code Here

TOP

Related Classes of de.willuhn.util.History

Copyright © 2018 www.massapicom. 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.