blob: 68591d3cdefa09c24548bcfb75bc5b211cf43868 [file] [log] [blame]
/*
* Copyright (c) 2016, 2020 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016 IBM Corporation. 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:
// 12/05/2016-2.6 Jody Grassel
// - 443546: Converter autoApply does not work for primitive types
package org.eclipse.persistence.jpa.converter.model.autoapply;
import jakarta.persistence.Convert;
import jakarta.persistence.Entity;
import jakarta.persistence.Id;
@Entity
public class ConvertEntityD2S {
@Id
private long id;
private double valueConvert;
@Convert(disableConversion=true)
private double valueNoConvert;
public ConvertEntityD2S() {
}
public ConvertEntityD2S(long id) {
this.id = id;
}
public ConvertEntityD2S(long id, double valueConvert, double valueNoConvert) {
this.id = id;
this.valueConvert = valueConvert;
this.valueNoConvert = valueNoConvert;
}
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public double getValueConvert() {
return valueConvert;
}
public void setValueConvert(double valueConvert) {
this.valueConvert = valueConvert;
}
public double getValueNoConvert() {
return valueNoConvert;
}
public void setValueNoConvert(double valueNoConvert) {
this.valueNoConvert = valueNoConvert;
}
@Override
public String toString() {
return "ConvertEntityD2S [id=" + id + ", valueConvert=" + valueConvert + ", valueNoConvert=" + valueNoConvert + "]";
}
}