mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-08-18 08:24:59 +00:00
#352- Unit Of Work : Make final instance variable of immutable Student class.
This commit is contained in:
@@ -28,9 +28,9 @@ package com.iluwatar.unitofwork;
|
|||||||
* {@link Student} is an entity.
|
* {@link Student} is an entity.
|
||||||
*/
|
*/
|
||||||
public class Student {
|
public class Student {
|
||||||
private Integer id;
|
private final Integer id;
|
||||||
private String name;
|
private final String name;
|
||||||
private String address;
|
private final String address;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param id student unique id
|
* @param id student unique id
|
||||||
|
|||||||
Reference in New Issue
Block a user