rspec/rules/S3365/java/rule.adoc
2021-04-28 18:08:03 +02:00

33 lines
500 B
Plaintext

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++``.
== Noncompliant Code Example
----
public class Book {
@Id
@GeneratedValue
private int id;
public void setId(int id) { // Noncompliant
this.id = id;
}
----
== Compliant Solution
----
public class Book {
@Id
@GeneratedValue
private int id;
private void setId(int id) {
this.id = id;
}
----