/* Copyright 2013 Nationale-Nederlanden Licensed under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package nl.nn.adapterframework.util; import java.util.Date; /** * Keeps a list of <code>MessageKeeperMessage</code>s. * <br/> * @author Johan Verrips IOS * @see MessageKeeperMessage */ public class MessageKeeper extends SizeLimitedVector { public MessageKeeper() { super(); } public MessageKeeper(int maxSize) { super(maxSize); } public synchronized void add(String message) { add(message, MessageKeeperMessage.INFO_LEVEL); } public synchronized void add(String message, String level) { super.add(new MessageKeeperMessage(message, level)); } public synchronized void add(String message, Date date) { add(message, date, MessageKeeperMessage.INFO_LEVEL); } public synchronized void add(String message, Date date, String level) { super.add(new MessageKeeperMessage(message, date, level)); } /** * Get a message by number * @return MessageKeeperMessage the Message * @see MessageKeeperMessage */ public MessageKeeperMessage getMessage(int i) { return (MessageKeeperMessage)super.get(i); } }