rspec/rules/S3365/java/rule.adoc

33 lines
500 B
Plaintext
Raw Normal View History

2021-04-28 16:49:39 +02:00
Once set, the value of a Hibernate ``++@Entity++``'s ``++@Id++`` field/column should never be updated. Therefore, setters for such fields should always be ``++private++``.
2021-04-28 16:49:39 +02:00
== Noncompliant Code Example
----
public class Book {
@Id
@GeneratedValue
private int id;
public void setId(int id) { // Noncompliant
this.id = id;
}
----
2021-04-28 16:49:39 +02:00
== Compliant Solution
----
public class Book {
@Id
@GeneratedValue
private int id;
private void setId(int id) {
this.id = id;
}
----