1 12 13 package com.openedit.users; 14 15 import java.io.Serializable ; 16 import java.util.Map ; 17 18 19 24 public interface PropertyContainer extends Serializable 25 { 26 31 Map getProperties(); 32 33 41 Object get(String inPropertyName); 42 43 78 void put(String inPropertyName, Object inPropertyValue) 79 throws UserManagerException; 80 81 92 void putAll(Map inProperties) throws UserManagerException; 93 94 102 void remove(String inPropertyName) throws UserManagerException; 103 104 112 void removeAll( String [] inProperties ) throws UserManagerException; 113 114 122 boolean getBoolean( String inPropertyName ); 123 124 131 String getString( String inPropertyName ); 132 133 140 void safePut( String inPropertyName, Object inPropertyValue ); 141 } 142 | Popular Tags |