Skip to content

Commit

Permalink
Fix Javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
gefloh authored and vietj committed Feb 6, 2025
1 parent 5f2b2fd commit 2edce51
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/main/java/io/vertx/ext/mail/LoginOption.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
import io.vertx.codegen.annotations.VertxGen;

/**
* possible options for a login into a SMTP server
* possible options for a login into an SMTP server
* <br>
* either DISABLED, OPTIONAL, REQUIRED or XOAUTH2
* either DISABLED, NONE, REQUIRED or XOAUTH2
* <p>
* DISABLED means no login will be attempted
* <p>
* NONE means a login will be attempted if the server supports in and login credentials are set
* NONE means a login will be attempted if the server supports it and login credentials are set
* <p>
* REQUIRED means that a login will be attempted if the server supports it and the send operation will fail otherwise
* <p>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/io/vertx/ext/mail/MailConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -483,9 +483,9 @@ public LoginOption getLogin() {
/**
* Set the login mode for the connection.
* <p>
* Either DISABLED, OPTIONAL or REQUIRED
* Either DISABLED, NONE, REQUIRED or XOAUTH2
*
* @param login (default is OPTIONAL)
* @param login (default see {@link #DEFAULT_LOGIN})
* @return a reference to this, so the API can be used fluently
*/
public MailConfig setLogin(LoginOption login) {
Expand Down

0 comments on commit 2edce51

Please sign in to comment.