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