blob: 6f21e57577ef0fcdaed0383fe772ecad2c3f2f5b [file] [log] [blame]
/*
* Copyright (c) 1998, 2020 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:
// 11/05/2014-2.6 Tomas Kraus
// - 449818: Initial API and implementation.
package org.eclipse.persistence.testing.models.jpa21.advanced.converters;
import jakarta.persistence.AttributeConverter;
import jakarta.persistence.Converter;
/**
* Converts {@link String}s stored in database to not contain {@code ' '} characters. Any occurrence of {@code ' '}
* character is replaced by {@code '+'} character.
* @author Tomas Kraus
*/
@Converter(autoApply=false)
public class CompetitionConverter implements AttributeConverter<String, String> {
/**
* Entity to database conversion.
* @param attribute Entity attribute value to be converted.
* @return Value to be stored in the database column.
*/
@Override
public String convertToDatabaseColumn(final String attribute) {
if (attribute != null) {
return attribute.replace(' ', '+');
} else {
return null;
}
}
/**
* Database to entity conversion.
* @param dbData Database column value to be converted.
* @return Value to be stored in entity.
*/
@Override
public String convertToEntityAttribute(final String dbData) {
if (dbData != null) {
return dbData.replace('+', ' ');
} else {
return null;
}
}
}