- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for getPrincipals (0.1 sec)
-
src/main/java/jcifs/smb/Kerb5Authenticator.java
* * @see java.lang.Object#toString() */ @Override public String toString () { return "Kerb5Authenticatior[subject=" + ( this.getSubject() != null ? this.getSubject().getPrincipals() : null ) + ",user=" + this.user + ",realm=" + this.realm + "]"; } private SpnegoContext createContext ( CIFSContext tc, String targetDomain, String host ) throws GSSException {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 13K bytes - Viewed (0) -
src/main/java/jcifs/smb/JAASAuthenticator.java
} lc.login(); Subject s = lc.getSubject(); if ( log.isDebugEnabled() ) { log.debug("Got subject: " + s.getPrincipals()); } if ( log.isTraceEnabled() ) { log.trace("Got subject " + s); } this.cachedSubject = s; return this.cachedSubject;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcHandle.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 8.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java
if (type == SID.SID_TYPE_DOM_GRP || type == SID.SID_TYPE_ALIAS) { try { final SID[] children = sid.getGroupMemberSids(file.getServer(), (NtlmPasswordAuthentication) file.getPrincipal(), SID.SID_FLAG_RESOLVE_SIDS); for (final SID child : children) { if (!sidSet.contains(child)) { processAllowedSIDs(file, child, sidSet);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 18.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 26.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
* username for example: * <tt> * String username = f.getPrincipal().getName(); * </tt> * The <tt>Principal</tt> object returned will never be <tt>null</tt> * however the username can be <tt>null</tt> indication anonymous * credentials were used (e.g. some IPC$ services). */ public Principal getPrincipal() { return auth; } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 107.9K bytes - Viewed (0)