55565758596061626364
throws EntityStoreException { String state = store.get( entityReference ); if( state == null ) { throw new EntityNotFoundException( entityReference ); } return new StringReader( state ); }
198199200201202203204205206207
super.close(); String old = store.put( ref, toString() ); if( old == null ) { store.remove( ref ); throw new EntityNotFoundException( ref ); } } }; }