krb5.lib
Class AuthorizationDataEntry

java.lang.Object
  extended by krb5.lib.AuthorizationDataEntry
All Implemented Interfaces:
java.io.Serializable, java.lang.Cloneable

public class AuthorizationDataEntry
extends java.lang.Object
implements java.lang.Cloneable, java.io.Serializable

Class Description : Authorization data entry. A modified version of the code obtained from the Open Group Research Institute.

Version:
1.1
Author:
Bojan Pajkovski
See Also:
Serialized Form

Field Summary
 byte[] adData
          Authorization data
 int adType
          Authorization data type
 
Constructor Summary
AuthorizationDataEntry(int new_adType, byte[] new_adData)
          Class constructor
 
Method Summary
 java.lang.Object clone()
          Clones a copy of the object
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

adType

public int adType
Authorization data type


adData

public byte[] adData
Authorization data

Constructor Detail

AuthorizationDataEntry

public AuthorizationDataEntry(int new_adType,
                              byte[] new_adData)
Class constructor

Parameters:
new_adType - int
new_adData - byte[]
Method Detail

clone

public java.lang.Object clone()
Clones a copy of the object

Overrides:
clone in class java.lang.Object
Returns:
Object
See Also:
Object.clone()