Fix broken links in example JavaDoc

pull/89/head
Richard Körber 2020-01-23 23:25:24 +01:00
parent 4a8c39a93a
commit f1e3048dd2
No known key found for this signature in database
GPG Key ID: AAB9FD19C78AA3E0
1 changed files with 4 additions and 4 deletions

View File

@ -19,6 +19,7 @@ import java.io.FileWriter;
import java.io.IOException; import java.io.IOException;
import java.io.Writer; import java.io.Writer;
import java.net.URI; import java.net.URI;
import java.net.URL;
import java.security.KeyPair; import java.security.KeyPair;
import java.security.Security; import java.security.Security;
import java.util.Arrays; import java.util.Arrays;
@ -194,10 +195,9 @@ public class ClientTest {
* created. * created.
* <p> * <p>
* This is a simple way of finding your {@link Account}. A better way is to get the * This is a simple way of finding your {@link Account}. A better way is to get the
* URL and KeyIdentifier of your new account with {@link Account#getLocation()} * URL of your new account with {@link Account#getLocation()} and store it somewhere.
* {@link Session#getKeyIdentifier()} and store it somewhere. If you need to get * If you need to get access to your account later, reconnect to it via
* access to your account later, reconnect to it via * {@link Session#login(URL, KeyPair)} by using the stored location.
* {@link Account#bind(Session, URI)} by using the stored location.
* *
* @param session * @param session
* {@link Session} to bind with * {@link Session} to bind with