Skip to content

Instantly share code, notes, and snippets.

@mchmielarz
Last active June 4, 2019 09:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mchmielarz/e00f029bb22f7661c2ea3899974f51c8 to your computer and use it in GitHub Desktop.
Save mchmielarz/e00f029bb22f7661c2ea3899974f51c8 to your computer and use it in GitHub Desktop.
@Value
@Accessors(fluent = true)
public class SendingResult {
private final boolean isSend;
}
public class EmailSender {
public SendingResult send(EmailAddress emailAddress, Payload payload) {
return new SendingResult(doSend(emailAddress, payload.message));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment