java.io.Externalizable
, java.io.Serializable
, Streamable
public class AuthHeader extends Header implements Streamable
HDR_OVERHEAD
Constructor | Description |
---|---|
AuthHeader() |
Modifier and Type | Method | Description |
---|---|---|
AuthToken |
getToken() |
Used to get the token from the AuthHeader
|
void |
readExternal(java.io.ObjectInput in) |
|
void |
readFrom(java.io.DataInputStream in) |
Read the state of the current object (including superclasses) from instream
Note that the input stream must not be closed
|
void |
setToken(AuthToken token) |
Sets the token value to that of the passed in token object
|
int |
size() |
To be implemented by subclasses.
|
void |
writeExternal(java.io.ObjectOutput out) |
|
void |
writeTo(java.io.DataOutputStream out) |
Write the entire state of the current object (including superclasses) to outstream.
|
public void setToken(AuthToken token)
token
- the new authentication tokenpublic AuthToken getToken()
public void readExternal(java.io.ObjectInput in) throws java.io.IOException, java.lang.ClassNotFoundException
readExternal
in interface java.io.Externalizable
java.io.IOException
java.lang.ClassNotFoundException
public void writeExternal(java.io.ObjectOutput out) throws java.io.IOException
writeExternal
in interface java.io.Externalizable
java.io.IOException
public void writeTo(java.io.DataOutputStream out) throws java.io.IOException
Streamable
writeTo
in interface Streamable
java.io.IOException
public void readFrom(java.io.DataInputStream in) throws java.io.IOException, java.lang.IllegalAccessException, java.lang.InstantiationException
Streamable
readFrom
in interface Streamable
java.io.IOException
java.lang.IllegalAccessException
java.lang.InstantiationException
public int size()
Header
Copyright ? 1998-2008 Bela Ban. All Rights Reserved.