Package io.deephaven.enterprise.remote
Class RemoteTableBuilder.Unauthenticated
java.lang.Object
io.deephaven.enterprise.remote.RemoteTableBuilder.Unauthenticated
- Enclosing class:
- RemoteTableBuilder
An interposed interface that forces users to authenticate with the remote system before they can call any
subscription methods.
-
Method Summary
Modifier and TypeMethodDescriptionAuthenticate with the server using a username and passwordprivateKey
(@NotNull String keyFile) Authenticate to the server using a private key file.
-
Method Details
-
password
public RemoteTableBuilder password(@NotNull @NotNull String userName, @NotNull @NotNull String password) Authenticate with the server using a username and password- Parameters:
userName
- the usernamepassword
- the password- Returns:
- a
RemoteTableBuilder
for fetching tables
-
privateKey
Authenticate to the server using a private key file.- Parameters:
keyFile
- the private key file- Returns:
- a
RemoteTableBuilder
for fetching tables
-