< prev index next >

src/jdk.security.jgss/share/classes/com/sun/security/jgss/ExtendedGSSCredential.java

Print this page
rev 15764 : 8167181: Exported elements referring to inaccessible types in jdk.security.jgss

@@ -24,27 +24,18 @@
  */
 
 package com.sun.security.jgss;
 
 import org.ietf.jgss.*;
-import sun.security.jgss.GSSCredentialImpl;
 
 /**
  * The extended GSSCredential interface for supporting additional
  * functionalities not defined by {@code org.ietf.jgss.GSSCredential}.
  * @since 1.8
  */
 public interface ExtendedGSSCredential extends GSSCredential {
 
-    static class ExtendedGSSCredentialImpl extends GSSCredentialImpl
-            implements ExtendedGSSCredential {
-
-        public ExtendedGSSCredentialImpl(GSSCredentialImpl old) {
-            super(old);
-        }
-    }
-
     /**
      * Impersonates a principal. In Kerberos, this can be implemented
      * using the Microsoft S4U2self extension.
      * <p>
      * A {@link GSSException#NO_CRED GSSException.NO_CRED} will be thrown if the
< prev index next >