-
Notifications
You must be signed in to change notification settings - Fork 410
Refactoring, correct package and fluent interface #149
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Hello @richardcsantana, Thanks for the pull request! Before we can merge it, we need a signed CLA: https://github.com/sendgrid/sendgrid-java/blob/master/CONTRIBUTING.md#cla. Please get that over to us at [email protected] when you can. With Best Regards, Elmer |
@thinkingserious I signed it and sent the email. |
Your issue has come up for pull request review. Can you please resolve the conflicts? Thanks! |
d3e8151
to
5028af8
Compare
@thinkingserious Done |
Awesome, thank you! A couple of requests:
|
5028af8
to
33878ce
Compare
33878ce
to
5b88db2
Compare
Breaking change, only the imports that I correct, I think it could be on the changelog, so I'll put it here if you don't mind to put it on changelog:
|
Awesome @richardcsantana! |
Hello @richardcsantana, Could you please resolve the conflicts? Thanks! |
…ing content as InputStream.
…ports InputStream content
|
Do you mind signing our new CLA? It only requires a short form and a click of a button now :) |
Done!
…On 12 April 2017 at 19:09, Elmer Thomas ***@***.***> wrote:
@dmitraver <https://github.com/dmitraver>,
Do you mind signing our new CLA
<https://cla.sendgrid.com/sendgrid/sendgrid-java?pullRequest=149>? It
only requires a short form and a click of a button now :)
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#149 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABtwDNPT7fzcVSbAGPwmD4H4iGO1BqV6ks5rvQU7gaJpZM4KPf10>
.
--
Best wishes,
Dmitry Avershin.
|
Could you please resolve the above conflicts? Please don't worry about any versioning, we will take care of that. Thanks! With Best Regards, Elmer |
…ing content as InputStream.
Done! |
In the file
with
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Generally I see a lot of formatting changes. Could you please review: https://github.com/sendgrid/sendgrid-java/blob/master/CONTRIBUTING.md#style_guidelines_and_naming_conventions
Thanks!
@@ -126,6 +129,40 @@ public class Example { | |||
} | |||
``` | |||
|
|||
or using fluence interface |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
*fluent
.setFrom(new Email("[email protected]")) | ||
.setSubject("Hello World from the SendGrid Java Library!") | ||
.addPersonalization(new Personalization() | ||
.addTo(new Email("[email protected]"))) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The indentation is off here
HI @richardcsantana, Just checking in. Is there anything I can do to help? |
Implementation will be tracked in this issue. |
Refactoring some class.
Implement fluent interface.
Correcting some packages.