01: package biz.hammurapi.config; 02: 03: /** 04: * Context which entries can be modified. 05: * @author Pavel 06: * 07: */ 08: public interface MutableContext extends Context { 09: void set(String name, Object value); 10: 11: void remove(String name); 12: }