Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LoginContext (0.17 sec)

  1. src/main/java/jcifs/pac/kerberos/KerberosCredentials.java

            this(System.getProperty("jaaslounge.sso.jaas.config"));
        }
    
    
        public KerberosCredentials ( String loginContextName ) throws LoginException {
            LoginContext lc = new LoginContext(loginContextName);
            lc.login();
            this.subject = lc.getSubject();
        }
    
    
        public KerberosKey[] getKeys () {
            List<Key> serverKeys = new ArrayList<>();
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Oct 02 12:02:06 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/JAASAuthenticator.java

            try {
                log.debug("Logging on");
                LoginContext lc;
    
    	    Subject ps = super.getSubject();
    
                if ( this.configuration != null ) {
                    lc = new LoginContext(this.serviceName, ps, this, this.configuration);
                }
                else if ( ps != null ) {
                    lc = new LoginContext(this.serviceName, ps, this);
                } else {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.1K bytes
    - Viewed (0)
Back to top