Skip to content

Commit 1408567

Browse files
authored
Add createEmailConfirmationURL method (#497)
1 parent 3de78fc commit 1408567

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/com/backendless/UserService.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -474,15 +474,15 @@ public boolean verifyPassword( String password )
474474
return Invoker.invokeSync( USER_MANAGER_SERVER_ALIAS, "verifyPassword", new Object[] { password } );
475475
}
476476

477-
public void createEmailConfirmation( String identity )
477+
public String createEmailConfirmationURL( String identity )
478478
{
479479
if( identity == null || identity.isEmpty() )
480480
throw new IllegalArgumentException( ExceptionMessage.NULL_IDENTITY );
481481

482-
Invoker.invokeSync( USER_MANAGER_SERVER_ALIAS, "createEmailConfirmationURL", new Object[]{ identity } );
482+
return Invoker.invokeSync( USER_MANAGER_SERVER_ALIAS, "createEmailConfirmationURL", new Object[]{ identity } );
483483
}
484484

485-
public void createEmailConfirmation( String identity, AsyncCallback<Void> responder )
485+
public void createEmailConfirmationURL( String identity, AsyncCallback<String> responder )
486486
{
487487
try
488488
{

0 commit comments

Comments
 (0)