Created
September 19, 2016 21:05
-
-
Save Leward/5b8caa2d5e3b22be25871b19d65cf7a6 to your computer and use it in GitHub Desktop.
Groovy @builder with trait
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
trait MissionDefinition { | |
UUID id = UUID.randomUUID() | |
String label | |
String description | |
Integer teamSize | |
LocalDate startDate | |
LocalDate endDate | |
ActivityType activityType | |
String salesForceId | |
} |
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
@Immutable | |
@Builder(builderStrategy = BuilderASTTransformation.BuilderStrategy) | |
class MissionView implements MissionDefinition { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment