blob: bd5658e86ae7e8214ff1e34a08ef7b00ba1500d8 [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 ConvertEntityL2S {
@Id
private long id;
private long valueConvert;
@Convert(disableConversion=true)
private long valueNoConvert;
public ConvertEntityL2S() {
}
public ConvertEntityL2S(long id) {
this.id = id;
}
public ConvertEntityL2S(long id, long valueConvert, long valueNoConvert) {
this.id = id;
this.valueConvert = valueConvert;
this.valueNoConvert = valueNoConvert;
}
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public long getValueConvert() {
return valueConvert;
}
public void setValueConvert(long valueConvert) {
this.valueConvert = valueConvert;
}
public long getValueNoConvert() {
return valueNoConvert;
}
public void setValueNoConvert(long valueNoConvert) {
this.valueNoConvert = valueNoConvert;
}
@Override
public String toString() {
return "ConvertEntityL2S [id=" + id + ", valueConvert=" + valueConvert + ", valueNoConvert=" + valueNoConvert + "]";
}
}