- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 38 for D1guest (0.06 sec)
-
src/test/java/org/codelibs/fess/helper/PermissionHelperTest.java
assertEquals("DRguest", permissionHelper.encode("(deny){role}guest")); assertEquals("D2guest", permissionHelper.encode("(deny){group}guest")); assertEquals("D1guest", permissionHelper.encode("(deny){USER}guest")); assertEquals("DRguest", permissionHelper.encode("(deny){ROLE}guest")); assertEquals("D2guest", permissionHelper.encode("(deny){GROUP}guest"));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.9K bytes - Viewed (0) -
src/main/java/jcifs/Credentials.java
String getUserDomain (); /** * @return whether these are anonymous credentials */ boolean isAnonymous (); /** * @return whether these are guest credentials */ boolean isGuest ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
} @Override public boolean isAnonymous () { return this.type == AuthenticationType.NULL; } @Override public boolean isGuest () { return this.type == AuthenticationType.GUEST; } static String unescape ( String str ) throws NumberFormatException, UnsupportedEncodingException { char ch; int i, j, state, len; char[] out;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 18.8K bytes - Viewed (0) -
src/test/java/jcifs/tests/SessionTest.java
try ( SmbFile f = new SmbFile(url) ) { Credentials creds = f.getContext().getCredentials(); assertFalse(creds.isAnonymous()); assertFalse(creds.isGuest()); assertTrue(creds instanceof NtlmPasswordAuthenticator); NtlmPasswordAuthenticator ntcreds = (NtlmPasswordAuthenticator) creds; assertNotNull(ntcreds.getUsername());
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 15.8K bytes - Viewed (0) -
src/test/java/jcifs/tests/ContextConfigTest.java
NtlmPasswordAuthenticator ntlmGuestCreds = guestCreds.unwrap(NtlmPasswordAuthenticator.class); assertThat("anonymous", ntlmGuestCreds.isAnonymous(), CoreMatchers.is(false)); assertThat("guest", ntlmGuestCreds.isGuest(), CoreMatchers.is(true)); Credentials anonCreds = this.context.withAnonymousCredentials().getCredentials();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 9.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmContext.java
this.auth.isGuest() ? this.transportContext.getConfig().getGuestPassword() : this.auth.getPassword(), this.auth.isGuest() ? null : this.auth.getUserDomain(), this.auth.isGuest() ? this.transportContext.getConfig().getGuestUsername() : this.auth.getUsername(), this.workstation, this.ntlmsspFlags, this.auth.isGuest() || !this.auth.isAnonymous()); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 15.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/SearchListTests.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/JAASAuthenticator.java
@Override public boolean isAnonymous () { return false; } /** * {@inheritDoc} * * @see jcifs.smb.NtlmPasswordAuthenticator#isGuest() */ @Override public boolean isGuest () { return false; } @Override public Kerb5Authenticator clone () { JAASAuthenticator auth = new JAASAuthenticator();
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/smb/SmbTreeConnection.java
try ( SmbSessionImpl treesess = t.getSession() ) { if ( treesess.getCredentials().isAnonymous() || treesess.getCredentials().isGuest() ) { // refresh anonymous session or fallback to anonymous from guest login try ( SmbSessionInternal s = trans .getSmbSession(this.ctx.withAnonymousCredentials(), treesess.getTargetHost(), treesess.getTargetDomain())
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 31K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
labelType = new LabelType(); labelType.setName(name); labelType.setValue(name); labelType.setPermissions(new String[] { "Rguest" }); labelType.setCreatedBy(Constants.SYSTEM_USER); labelType.setCreatedTime(now); labelType.setUpdatedBy(Constants.SYSTEM_USER); labelType.setUpdatedTime(now); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 14.1K bytes - Viewed (0)