001    /**
002     * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.util.bridges.jsf.sun;
016    
017    import java.util.AbstractMap;
018    import java.util.Set;
019    
020    import javax.servlet.ServletContext;
021    
022    /**
023     * @author Neil Griffin
024     */
025    public class LiferayApplicationMap extends AbstractMap<String, Object> {
026    
027            public LiferayApplicationMap(ServletContext servletContext) {
028                    _servletContext = servletContext;
029            }
030    
031            @Override
032            public Set<Entry<String, Object>> entrySet() {
033                    throw new UnsupportedOperationException();
034            }
035    
036            @Override
037            public Object get(Object key) {
038                    return _servletContext.getAttribute(key.toString());
039            }
040    
041            @Override
042            public Object put(String key, Object value) {
043                    Object previousValue = get(key);
044    
045                    _servletContext.setAttribute(key.toString(), value);
046    
047                    return previousValue;
048            }
049    
050            @Override
051            public Object remove(Object key) {
052                    Object value = null;
053    
054                    if (key != null) {
055                            value = get(key);
056    
057                            _servletContext.removeAttribute(key.toString());
058                    }
059    
060                    return value;
061            }
062    
063            private ServletContext _servletContext;
064    
065    }