src/java.security.jgss/share/classes/sun/security/jgss/krb5/Krb5Context.java
changeset 58638 7be56b2ac50d
parent 58611 53ddf218eddd
parent 58510 23a06a5eeddd
child 58679 9c3209ff7550
equal deleted inserted replaced
58637:d66bdf0e2dfe 58638:7be56b2ac50d
  1391      * The session key returned by inquireSecContext(KRB5_INQ_SSPI_SESSION_KEY)
  1391      * The session key returned by inquireSecContext(KRB5_INQ_SSPI_SESSION_KEY)
  1392      */
  1392      */
  1393     static class KerberosSessionKey implements Key {
  1393     static class KerberosSessionKey implements Key {
  1394         private static final long serialVersionUID = 699307378954123869L;
  1394         private static final long serialVersionUID = 699307378954123869L;
  1395 
  1395 
       
  1396         @SuppressWarnings("serial") // Not statically typed as Serializable
  1396         private final EncryptionKey key;
  1397         private final EncryptionKey key;
  1397 
  1398 
  1398         KerberosSessionKey(EncryptionKey key) {
  1399         KerberosSessionKey(EncryptionKey key) {
  1399             this.key = key;
  1400             this.key = key;
  1400         }
  1401         }