In src/main/java, using the default package, create a public final
class called MyFirstImmutableEntity.
In MyFirstImmutableEntity, create a private final
field of type int
. Please name it myFirstImmutableField
.
At the same time, please create a constructor which accepts an int
value and assigns it to myFirstImmutableField
.
Next, create a getter method for myFirstImmutableField
, called 'getMyFirstImmutableField', which returns this field.