Package org.acplt.oncrpc.server
Class OncRpcServerAuthShort
java.lang.Object
org.acplt.oncrpc.server.OncRpcServerAuthShort
- All Implemented Interfaces:
OncRpcServerAuth
The
OncRpcServerAuthShort class handles all protocol issues
of the ONC/RPC authentication AUTH_SHORT on the server
side.- Version:
- $Revision: 1.1 $ $Date: 2003/08/13 12:03:51 $ $State: Exp $ $Locker: $
- Author:
- Harald Albrecht
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal intReturns the type (flavor) ofauthenticationused.final byte[]Returns the shorthand credential sent by the caller.final byte[]Returns the shorthand verifier to be sent back to the caller.final voidsetShorthandVerifier(byte[] shorthandVerf) Sets shorthand verifier to be sent back to the caller.final voidDecodes -- that is: deserializes -- an ONC/RPC authentication object (credential & verifier) on the server side.final voidEncodes -- that is: serializes -- an ONC/RPC authentication object (its verifier) on the server side.
-
Constructor Details
-
OncRpcServerAuthShort
public OncRpcServerAuthShort()
-
-
Method Details
-
getAuthenticationType
public final int getAuthenticationType()Returns the type (flavor) ofauthenticationused.- Specified by:
getAuthenticationTypein interfaceOncRpcServerAuth- Returns:
- Authentication type used by this authentication object.
-
getShorthandCred
public final byte[] getShorthandCred()Returns the shorthand credential sent by the caller.- Returns:
- A byte array containing the shorthand credential.
-
setShorthandVerifier
public final void setShorthandVerifier(byte[] shorthandVerf) Sets shorthand verifier to be sent back to the caller. The caller then can use this shorthand verifier as the new credential with the next ONC/RPC calls. If you don't set the verifier or set it tonull, then the verifier returned to the caller will be of typeAUTH_NONE.- Parameters:
shorthandVerf- A byte array containing the shorthand verifier.
-
getShorthandVerifier
public final byte[] getShorthandVerifier()Returns the shorthand verifier to be sent back to the caller.- Returns:
- A byte array containing the shorthand verifier.
-
xdrDecodeCredVerf
Decodes -- that is: deserializes -- an ONC/RPC authentication object (credential & verifier) on the server side.- Specified by:
xdrDecodeCredVerfin interfaceOncRpcServerAuth- Parameters:
xdr- An XDR decoding stream- Throws:
OncRpcException- if an ONC/RPC error occurs.IOException- if an I/O error occurs.
-
xdrEncodeVerf
Encodes -- that is: serializes -- an ONC/RPC authentication object (its verifier) on the server side.- Specified by:
xdrEncodeVerfin interfaceOncRpcServerAuth- Parameters:
xdr- An XDR encoding stream- Throws:
OncRpcException- if an ONC/RPC error occurs.IOException- if an I/O error occurs.
-