Skip to content

Commit

Permalink
Add Javadocs to reference overloaded method
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmyjames committed Sep 28, 2020
1 parent 22fd0b4 commit 66be7ab
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/java/com/auth0/client/mgmt/JobsEntity.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ public Request<Job> get(String jobId) {
*
* @param userId The user_id of the user to whom the email will be sent.
* @param clientId The id of the client, if not provided the global one will be used.
*
* @return a Request to execute.
*
* @see JobsEntity#sendVerificationEmail(String, String, EmailVerificationIdentity)
*/
public Request<Job> sendVerificationEmail(String userId, String clientId) {
return sendVerificationEmail(userId, clientId, null);
Expand All @@ -74,6 +77,8 @@ public Request<Job> sendVerificationEmail(String userId, String clientId) {
* @param emailVerificationIdentity The identity of the user. Required to verify primary identities when using social, enterprise, or passwordless connections. It is also required to verify secondary identities.
*
* @return a Request to execute.
*
* @see JobsEntity#sendVerificationEmail(String, String)
*/
public Request<Job> sendVerificationEmail(String userId, String clientId, EmailVerificationIdentity emailVerificationIdentity) {
Asserts.assertNotNull(userId, "user id");
Expand Down

0 comments on commit 66be7ab

Please sign in to comment.