package com.github.signed.sandbox.jpa.customtype; public class Name { private final String first; public Name(String first){ this.first = first; } }