- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 24 for D2guest (0.04 sec)
-
src/main/java/jcifs/Credentials.java
* @return whether these are anonymous credentials */ boolean isAnonymous(); /** * Check if these are guest credentials. * @return whether these are guest credentials */ boolean isGuest();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0) -
src/test/java/jcifs/CredentialsTest.java
} @Test @DisplayName("Should check for guest credentials") void testIsGuest() { // Given when(mockCredentials.isGuest()).thenReturn(true); // When boolean isGuest = mockCredentials.isGuest(); // Then assertTrue(isGuest); verify(mockCredentials).isGuest(); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComSessionSetupAndXTest.java
setupNegotiateStubs(); NtlmPasswordAuthenticator auth = mock(NtlmPasswordAuthenticator.class); when(auth.isAnonymous()).thenReturn(true); when(auth.isGuest()).thenReturn(true); when(auth.getUsername()).thenReturn("guest"); when(auth.getUserDomain()).thenReturn("dom"); // Construct SmbComSessionSetupAndX obj = new SmbComSessionSetupAndX(mockContext, mockNegotiate, mockAndX, auth);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbRenewableCredentialsTest.java
} @Override public void refresh() throws CIFSException { // no-op for tests } @Override public boolean isGuest() { return false; // not guest for test purposes } @Override public boolean isAnonymous() { return false; // not anonymous for test purposes } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7K bytes - Viewed (0) -
src/test/java/jcifs/context/AbstractCIFSContextTest.java
assertTrue(wrappedContext instanceof CIFSContextCredentialWrapper); // Verify that the new context uses NtlmPasswordAuthenticator (guest) assertTrue(wrappedContext.getCredentials() instanceof NtlmPasswordAuthenticator); assertTrue(wrappedContext.getCredentials().isGuest()); } @Test void testGetCredentials() { assertEquals(mockCredentials, context.getCredentials()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7K 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 Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/SearchListTests.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 12 02:18:38 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_user.role/role.bulk
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 144 bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupResponse.java
bufferIndex += securityBufferLength; return bufferIndex - start; } /** * Checks whether the session is either anonymous or a guest session * * @return whether the session is either anonymous or a guest session */ public boolean isLoggedInAsGuest() { return (this.sessionFlags & (SMB2_SESSION_FLAGS_IS_GUEST | SMB2_SESSION_FLAGS_IS_NULL)) != 0; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.8K bytes - Viewed (1) -
src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndX.java
this.lmHash = new byte[0]; this.ntHash = new byte[0]; this.capabilities &= ~SmbConstants.CAP_EXTENDED_SECURITY; if (a.isGuest()) { this.accountName = a.getUsername(); if (this.isUseUnicode()) { this.accountName = this.accountName.toUpperCase(); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.9K bytes - Viewed (0)