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