1 5 6 package org.exoplatform.commons.map; 7 8 import javax.portlet.PortletContext; 9 import java.util.Enumeration ; 10 11 16 public class ApplicationMap extends AbstractMap 17 { 18 private PortletContext p_context; 19 20 public ApplicationMap( PortletContext context ) 21 { 22 p_context = context; 23 } 24 25 protected Object getAttribute( String name ) 26 { 27 return p_context.getAttribute( name ); 28 } 29 30 protected void setAttribute( String name, Object value ) 31 { 32 p_context.setAttribute( name, value ); 33 } 34 35 protected void removeAttribute( String name ) 36 { 37 p_context.removeAttribute( name ); 38 } 39 40 protected Enumeration getAttributeNames() 41 { 42 return p_context.getAttributeNames(); 43 } 44 } 45 | Popular Tags |