blob: be7d95495dcbdcd9dd73d29164b12136b6eca1fc [file] [log] [blame]
/*
* Copyright (c) 1998, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.mappings.transformers;
import org.eclipse.persistence.sessions.DataRecord;
import org.eclipse.persistence.sessions.Session;
import org.eclipse.persistence.mappings.foundation.AbstractTransformationMapping;
/**
* <p><b>Purpose</b>: Provides an empty implementation of AttributeTransformer.
* Users who do not require the full AttributeTransformer API can subclass this class
* and implement only the methods required.
* @see AttributeTransformer
* @version $Header: AttributeTransformerAdapter.java 11-jul-2006.10:33:44 gyorke Exp $
* @author mmacivor
* @since 10
*/
public class AttributeTransformerAdapter implements AttributeTransformer {
/**
* Default constructor.
*/
public AttributeTransformerAdapter() {
}
@Override
public void initialize(AbstractTransformationMapping mapping) {
}
@Override
public Object buildAttributeValue(DataRecord dataRecord, Object object, Session session) {
return null;
}
}