blob: 73ba1e4fb33f61acf2ae94031b45fb3427fd66b7 [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:
// Denise Smith - September 22 /2009
package org.eclipse.persistence.testing.oxm.mappings.directtofield.converter;
import org.eclipse.persistence.mappings.DatabaseMapping;
import org.eclipse.persistence.mappings.converters.Converter;
import org.eclipse.persistence.sessions.Session;
public class MyConverter implements Converter {
public static boolean HIT_CONVERTER;
public MyConverter(){
}
@Override
public Object convertDataValueToObjectValue(Object fieldValue, Session session) {
HIT_CONVERTER = true;
return fieldValue;
}
@Override
public Object convertObjectValueToDataValue(Object objectValue, Session session) {
return objectValue;
}
@Override
public void initialize(DatabaseMapping mapping, Session session) {
}
@Override
public boolean isMutable() {
return false;
}
}