mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Matthew Swift
07.48.2012 046430396dd40a63d6f574bf53c4d3ad2977a130
opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/AbstractEntry.java
@@ -234,6 +234,20 @@
    /**
     * {@inheritDoc}
     */
    public AttributeParser parseAttribute(AttributeDescription attributeDescription) {
        return AttributeParser.parseAttribute(getAttribute(attributeDescription));
    }
    /**
     * {@inheritDoc}
     */
    public AttributeParser parseAttribute(String attributeDescription) {
        return AttributeParser.parseAttribute(getAttribute(attributeDescription));
    }
    /**
     * {@inheritDoc}
     */
    public boolean removeAttribute(final AttributeDescription attributeDescription) {
        return removeAttribute(Attributes.emptyAttribute(attributeDescription), null);
    }