public ConfigurationElementBuilder removeAttribute(String name) {
   configurationElement.getMutableAttributes().remove(name);
   return this;
 }
 public ConfigurationElementBuilder addAttribute(String name, String value) {
   configurationElement.getMutableAttributes().put(name, value);
   return this;
 }