File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments