Class Person

java.lang.Object
de.cuioss.test.generator.domain.Person

public class Person extends Object
Immutable value object representing a person with basic identifying information. Uses Lombok's @Value for immutability and @Builder for convenient object creation.

Example usage:

 Person person = Person.builder()
     .title("Dr.")
     .firstname("John")
     .lastname("Doe")
     .email("john.doe@example.com")
     .organisation("ACME Corp")
     .build();
 
Author:
Oliver Wolff
  • Constructor Details