Class KerberosCredMessage
java.lang.Object
javax.security.auth.kerberos.KerberosCredMessage
- All Implemented Interfaces:
Destroyable
This class encapsulates a Kerberos 5 KRB_CRED message which can be used to
send Kerberos credentials from one principal to another.
A KRB_CRED message is defined in Section 5.8.1 of the Kerberos Protocol Specification (RFC 4120) as:
KRB-CRED ::= [APPLICATION 22] SEQUENCE {
pvno [0] INTEGER (5),
msg-type [1] INTEGER (22),
tickets [2] SEQUENCE OF Ticket,
enc-part [3] EncryptedData -- EncKrbCredPart
}
- Since:
- 9
-
Constructor Summary
ConstructorsConstructorDescriptionKerberosCredMessage(KerberosPrincipal sender, KerberosPrincipal recipient, byte[] message) Constructs aKerberosCredMessageobject. -
Method Summary
Modifier and TypeMethodDescriptionvoiddestroy()Destroys this object by clearing out the message.booleanCompares the specified object with thisKerberosCredMessagefor equality.byte[]Returns the DER encoded form of the KRB_CRED message.Returns the recipient of this message.Returns the sender of this message.inthashCode()Returns a hash code for thisKerberosCredMessage.toString()Returns an informative textual representation of thisKerberosCredMessage.Methods declared in class Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.Methods declared in interface Destroyable
isDestroyedModifier and TypeMethodDescriptiondefault booleanDetermine if thisObjecthas been destroyed.
-
Constructor Details
-
KerberosCredMessage
Constructs aKerberosCredMessageobject.The contents of the
messageargument are copied; subsequent modification of the byte array does not affect the newly created object.- Parameters:
sender- the sender of the messagerecipient- the recipient of the messagemessage- the DER encoded KRB_CRED message- Throws:
NullPointerException- if any of sender, recipient or message is null
-
-
Method Details
-
getEncoded
public byte[] getEncoded()Returns the DER encoded form of the KRB_CRED message.- Returns:
- a newly allocated byte array that contains the encoded form
- Throws:
IllegalStateException- if the object is destroyed
-
getSender
Returns the sender of this message.- Returns:
- the sender
- Throws:
IllegalStateException- if the object is destroyed
-
getRecipient
Returns the recipient of this message.- Returns:
- the recipient
- Throws:
IllegalStateException- if the object is destroyed
-
destroy
public void destroy()Destroys this object by clearing out the message.- Specified by:
destroyin interfaceDestroyable
-
toString
-
hashCode
-
equals
Compares the specified object with thisKerberosCredMessagefor equality. Returns true if the given object is also aKerberosCredMessageand the twoKerberosCredMessageinstances are equivalent. More formally twoKerberosCredMessageinstances are equal if they have equal sender, recipient, and encoded KRB_CRED messages. A destroyedKerberosCredMessageobject is only equal to itself.
-