Package org.acplt.oncrpc
Interface OncRpcAuthType
public interface OncRpcAuthType
A collection of constants used to identify the authentication schemes
available for ONC/RPC. Please note that currently only
ONCRPC_AUTH_NONE
is supported by this Java package.- Version:
- $Revision: 1.1.1.1 $ $Date: 2003/08/13 12:03:40 $ $State: Exp $ $Locker: $
- Author:
- Harald Albrecht
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
The DES authentication scheme (using encrypted time stamps) is not supported -- and besides, it's not a silver bullet either.static final int
No authentication scheme used for this remote procedure call.static final int
The so-called "short hand Unix style" is not supported.static final int
The so-called "Unix" authentication scheme is not supported.
-
Field Details
-
ONCRPC_AUTH_NONE
static final int ONCRPC_AUTH_NONENo authentication scheme used for this remote procedure call.- See Also:
-
ONCRPC_AUTH_UNIX
static final int ONCRPC_AUTH_UNIXThe so-called "Unix" authentication scheme is not supported. This one only sends the users id as well as her/his group identifiers, so this is simply far too weak to use in typical situations where authentication is requested.- See Also:
-
ONCRPC_AUTH_SHORT
static final int ONCRPC_AUTH_SHORTThe so-called "short hand Unix style" is not supported.- See Also:
-
ONCRPC_AUTH_DES
static final int ONCRPC_AUTH_DESThe DES authentication scheme (using encrypted time stamps) is not supported -- and besides, it's not a silver bullet either.- See Also:
-