001/**
002 * Copyright 2005-2014 The Kuali Foundation
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.rice.kns.util;
017
018import org.kuali.rice.krad.util.MessageMap;
019
020import java.util.List;
021import java.util.Set;
022
023/**
024 * An implementation of {@link MessageContainer} that makes warning messages accessible by the JSP layer
025 * 
026 * @author Kuali Rice Team (rice.collab@kuali.org)
027 *
028 * @deprecated Only used in KNS classes, use KRAD.
029 */
030@Deprecated
031public class WarningContainer extends MessageContainer {
032
033        public WarningContainer(MessageMap errorMap) {
034                super(errorMap);
035        }
036        
037        /**
038         * This overridden method ...
039         * 
040         * @see MessageContainer#getMessageCount()
041         */
042        @Override
043        public int getMessageCount() {
044                return getMessageMap().getWarningCount();
045        }
046
047        
048        /**
049         * @see MessageContainer#getMessagePropertyNames()
050         */
051        @Override
052        protected Set<String> getMessagePropertyNames() {
053                return getMessageMap().getAllPropertiesWithWarnings();
054        }
055
056        /**
057         * @see MessageContainer#getMessagePropertyList()
058         */
059        @Override
060        public List<String> getMessagePropertyList() {
061                return getMessageMap().getPropertiesWithWarnings();
062        }
063        
064        /**
065         * @see MessageContainer#getMessagesForProperty(java.lang.String)
066         */
067        @Override
068        protected List getMessagesForProperty(String propertyName) {
069                return getMessageMap().getWarningMessagesForProperty(propertyName);
070        }
071}