org.acplt.oncrpc.server
public final class OncRpcServerAuthUnix extends OncRpcServerAuth
OncRpcServerAuthNone
class handles all protocol issues
of the ONC/RPC authentication AUTH_UNIX
on the server
side.Modifier and Type | Field and Description |
---|---|
int |
gid
Contains the group ID of caller supplied through credential.
|
int[] |
gids
Contains a set of group IDs the caller belongs to, as supplied
through credential.
|
java.lang.String |
machinename
Contains the machine name of caller supplied through credential.
|
private byte[] |
shorthandVerf
Contains the shorthand authentication verifier (credential) to return
to the caller to be used with the next ONC/RPC calls.
|
int |
stamp
Contains timestamp as supplied through credential.
|
int |
uid
Contains the user ID of caller supplied through credential.
|
Constructor and Description |
---|
OncRpcServerAuthUnix(XdrDecodingStream xdr)
Constructs an
OncRpcServerAuthUnix object and pulls its
state off an XDR stream. |
Modifier and Type | Method and Description |
---|---|
int |
getAuthenticationType()
Returns the type (flavor) of
authentication
used. |
byte[] |
getShorthandVerifier()
Returns the shorthand verifier to be sent back to the caller.
|
void |
setShorthandVerifier(byte[] shorthandVerf)
Sets shorthand verifier to be sent back to the caller.
|
void |
xdrDecodeCredVerf(XdrDecodingStream xdr)
Decodes -- that is: deserializes -- an ONC/RPC authentication object
(credential & verifier) on the server side.
|
void |
xdrEncodeVerf(XdrEncodingStream xdr)
Encodes -- that is: serializes -- an ONC/RPC authentication object
(its verifier) on the server side.
|
xdrNew
public int stamp
public java.lang.String machinename
public int uid
public int gid
public int[] gids
private byte[] shorthandVerf
public OncRpcServerAuthUnix(XdrDecodingStream xdr) throws OncRpcException, java.io.IOException
OncRpcServerAuthUnix
object and pulls its
state off an XDR stream.xdr
- XDR stream to retrieve the object state from.OncRpcException
- if an ONC/RPC error occurs.java.io.IOException
- if an I/O error occurs.public final int getAuthenticationType()
authentication
used.getAuthenticationType
in class OncRpcServerAuth
public final void setShorthandVerifier(byte[] shorthandVerf)
public final byte[] getShorthandVerifier()
public final void xdrDecodeCredVerf(XdrDecodingStream xdr) throws OncRpcException, java.io.IOException
xdrDecodeCredVerf
in class OncRpcServerAuth
OncRpcException
- if an ONC/RPC error occurs.java.io.IOException
- if an I/O error occurs.public final void xdrEncodeVerf(XdrEncodingStream xdr) throws OncRpcException, java.io.IOException
xdrEncodeVerf
in class OncRpcServerAuth
OncRpcException
- if an ONC/RPC error occurs.java.io.IOException
- if an I/O error occurs.