Class SampleValueObject

java.lang.Object
com.codebox.bean.SampleValueObject

public class SampleValueObject extends Object
The Class SampleValueObject.

From Lombok docs: https://projectlombok.org/features/Value

@Value is the immutable variant of @Data; all fields are made and final by default, and setters are not generated. The class itself is also made final by default, because immutability is not something that can be forced onto a subclass.

  • Constructor Details

    • SampleValueObject

      public SampleValueObject()