/** {@inheritDoc} */ public Map<String, Object> getAttributes() { return attributes.getAttributes(); }
/** {@inheritDoc} */ public Set<String> getAttributeNames() { return attributes.getAttributeNames(); }
/** {@inheritDoc} */ public boolean removeAttribute(String name) { return attributes.removeAttribute(name); }
/** {@inheritDoc} */ public boolean hasAttribute(String name) { return attributes.hasAttribute(name); }
/** {@inheritDoc} */ public boolean setAttribute(String name, Object value) { return attributes.setAttribute(name, value); }
/** {@inheritDoc} */ public Object getAttribute(String name) { return attributes.getAttribute(name); }