blob: aa28520110cc1616ee6bcd213985079ee0f21a50 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.apache.directory.api.ldap.model.schema.normalizers;
import org.apache.directory.api.ldap.model.entry.Value;
import org.apache.directory.api.ldap.model.schema.Normalizer;
/**
* No op (pass through or do nothing) normalizer returning what its given.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
@SuppressWarnings("serial")
public class NoOpNormalizer extends Normalizer
{
/**
* Creates a new instance of NoOpNormalizer.
*
* @param oid The MR OID to use with this Normalizer
*/
public NoOpNormalizer( String oid )
{
super( oid );
}
/**
* Default constructor for NoOpNormalizer used when we must set the OID
* after instantiating the Normalizer.
*/
public NoOpNormalizer()
{
}
/**
* Returns the value argument as-is without alterations all the time.
*
* @param value any value
* @return the value argument returned as-is
* @see org.apache.directory.api.ldap.model.schema.Normalizer#normalize(Value)
*/
public Value<?> normalize( Value<?> value )
{
return value;
}
/**
* Returns the value argument as-is without alterations all the time.
*
* @param value any value
* @return the value argument returned as-is
* @see org.apache.directory.api.ldap.model.schema.Normalizer#normalize(String)
*/
public String normalize( String value )
{
return value;
}
}