blob: de85fe1dd5495a0594fadcb494e162651cb96396 [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 ConvertEntityDW2S {
@Id
private long id;
private Double valueConvert;
@Convert(disableConversion=true)
private Double valueNoConvert;
public ConvertEntityDW2S() {
}
public ConvertEntityDW2S(long id) {
this.id = id;
}
public ConvertEntityDW2S(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 "ConvertEntityDW2S [id=" + id + ", valueConvert=" + valueConvert + ", valueNoConvert=" + valueNoConvert + "]";
}
}