package org.simantics.document.server.io; import java.util.List; public interface CommandContextMutable extends CommandContext { @Deprecated public CommandContextMutable putString(String key, String value); public CommandContextMutable putRow(String key, List row); public CommandContextMutable merge(CommandContext context); public CommandContextMutable putValue(String key, Object value); }