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

Matthew Swift
11.13.2013 4ba67b612ac446dd8e0a83689983499491324eef
opendj3/opendj-rest2ldap/src/main/java/org/forgerock/opendj/rest2ldap/Rest2LDAP.java
@@ -359,13 +359,13 @@
    }
    public static AttributeMapper mapLDAPConstant(final AttributeDescription attribute,
            final Object attributeValue) {
        return new LDAPConstantAttributeMapper(attribute, attributeValue);
            final Object... attributeValues) {
        return new LDAPConstantAttributeMapper(attribute, attributeValues);
    }
    public static AttributeMapper mapLDAPConstant(final String attribute,
            final Object attributeValue) {
        return mapLDAPConstant(AttributeDescription.valueOf(attribute), attributeValue);
            final Object... attributeValues) {
        return mapLDAPConstant(AttributeDescription.valueOf(attribute), attributeValues);
    }
    private static AttributeMapper mapOf(final Collection<AttributeMapper> mappers) {