// Node: R/W
public Object putAt(final String attributeName, final Object value) {
final Attributes attributes = getAttributes();
if (value == null) {
final int index = attributes.findFirst(attributeName);
if (index != -1)
attributes.remove(index);
// else: ignore request
}
else {