Skip to content

Commit

Permalink
Merge pull request #2119 from istudens/JBEAP-22416
Browse files Browse the repository at this point in the history
[JBEAP-22416] fixing entity classes to follow javax.persistence.Entit…
  • Loading branch information
emmartins committed Oct 3, 2023
2 parents 9e7d7e3 + 6dc03e1 commit a1364c1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -27,7 +27,7 @@
*/
@Entity
@XmlRootElement
public final class CallerUser {
public class CallerUser {

@Id
@GeneratedValue
Expand All @@ -36,7 +36,7 @@ public final class CallerUser {
private String firstName, lastName;


private CallerUser() {
protected CallerUser() {
// no-op constructor for the Hibernate initiation
}

Expand Down
Expand Up @@ -22,7 +22,7 @@
import javax.persistence.Id;

@Entity
public final class CalleeUser {
public class CalleeUser {

@Id
@GeneratedValue
Expand All @@ -31,7 +31,7 @@ public final class CalleeUser {
private String firstName, lastName;


private CalleeUser() {
protected CalleeUser() {
// no-op constructor for the Hibernate initiation
}

Expand Down

0 comments on commit a1364c1

Please sign in to comment.