blob: d24b06171a723fac1a07f1280a14936f17441f70 [file] [log] [blame]
/*
* Copyright (c) 2021 Oracle, and/or affiliates. All rights reserved.
* Copyright (c) 2021 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:
// IBM - Bug 412391: Add support for weaving hidden variables
package org.eclipse.persistence.jpa.test.weave.model;
import jakarta.persistence.Entity;
import jakarta.persistence.Id;
@Entity
public class WeavedEntityA extends WeavedAbstractMS {
@Id private long id;
private Short hiddenAttribute;
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
}