public void setProperty(String name, String value) throws Exception { context.getProperties().put(name, value); }
public Map<String, String> getProperties() { if (context.getProperties().isEmpty()) { return null; } return context.getProperties(); }