Skip to content

Instantly share code, notes, and snippets.

@Gogetter
Last active March 20, 2022 09:20
Show Gist options
  • Save Gogetter/118fedfaafd5275c9e5d7c73f4a73203 to your computer and use it in GitHub Desktop.
Save Gogetter/118fedfaafd5275c9e5d7c73f4a73203 to your computer and use it in GitHub Desktop.
Lombok Approach
@Value
public class EmailData {
String recipient;
String subject;
String message;
Set<EmailAttachment> attachments;
@JsonIgnore
public boolean hasAttachments() {
return (attachments != null && !attachments.isEmpty());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment