1 /*****************************************2 * *3 * JBoss Portal: The OpenSource Portal *4 * *5 * Distributable under LGPL license. *6 * See terms of license at gnu.org. *7 * *8 *****************************************/9 package org.jboss.portal.core.model;10 11 import java.util.Map ;12 13 /**14 * Extends the map to provide meta information about user properties.15 *16 * @author <a HREF="mailto:julien@jboss.org">Julien Viet</a>17 * @version $Revision: 1.1 $18 */19 public interface PropertyMap extends Map 20 {21 boolean isReadOnly(Object key);22 }23