Last active
July 30, 2025 08:15
-
-
Save trikitrok/a7b3ca583040547457e510397b9d150e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// imports elided... | |
public class ClaimDataBuilder extends ClaimBuilder<ClaimDataBuilder> { | |
private ClaimDataBuilder() { | |
super(); | |
} | |
public static ClaimDataBuilder aClaimDto() { | |
return new ClaimDataBuilder(); | |
} | |
public ClaimData build() { | |
return buildData(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment