- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 36 for setCredentials (0.49 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/impl/AuthenticationImpl.java
public AuthScope getAuthScope() { return authScope; } /* * (non-Javadoc) * * @see org.codelibs.fess.crawler.client.http.Authentication#getCredentials() */ @Override public Credentials getCredentials() { return credentials; } /** * Sets the authentication scope. * * @param authScope the authentication scope to set */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractor.java
for (final Authentication authentication : siteCredentialList) { final AuthScope authScope = authentication.getAuthScope(); credentialsProvider.setCredentials(authScope, authentication.getCredentials()); final AuthScheme authScheme = authentication.getAuthScheme(); if (authScope.getHost() != null && authScheme != null) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 12.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 52.2K bytes - Viewed (0) -
src/test/java/jcifs/context/CIFSContextCredentialWrapperTest.java
// We can directly test getCredentials() to ensure it returns the initial credentials. assertEquals(mockCredentials, wrapper.getCredentials(), "Initial credentials should be set by constructor"); } @Test @DisplayName("Should return the credentials provided in the constructor") void testGetCredentials() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0) -
src/test/java/jcifs/context/AbstractCIFSContextTest.java
// Verify that the new context uses NtlmPasswordAuthenticator (guest) assertTrue(wrappedContext.getCredentials() instanceof NtlmPasswordAuthenticator); assertTrue(wrappedContext.getCredentials().isGuest()); } @Test void testGetCredentials() { assertEquals(mockCredentials, context.getCredentials()); } @Test void testHasDefaultCredentials_withNonAnonymous() {
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/context/CIFSContextCredentialWrapper.java
super(delegate); this.creds = creds; } /** * * {@inheritDoc} * * @see jcifs.context.CIFSContextWrapper#getCredentials() */ @Override public Credentials getCredentials() { return this.creds; } /** * {@inheritDoc} * * @see jcifs.CIFSContext#renewCredentials(java.lang.String, java.lang.Throwable) */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndX.java
protected int writeParameterWordsWireFormat(final byte[] dst, int dstIndex) { if (this.server.security == SmbConstants.SECURITY_SHARE && this.ctx.getCredentials() instanceof NtlmPasswordAuthenticator) { final NtlmPasswordAuthenticator pwAuth = (NtlmPasswordAuthenticator) this.ctx.getCredentials(); if (isExternalAuth(pwAuth)) { this.passwordLength = 1; } else if (this.server.encryptedPasswords) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/test/java/jcifs/CIFSContextTest.java
// Given Credentials mockCreds = mock(Credentials.class); when(mockContext.getCredentials()).thenReturn(mockCreds); // When Credentials creds = mockContext.getCredentials(); // Then assertEquals(mockCreds, creds); verify(mockContext).getCredentials(); } @Test @DisplayName("Should get URLStreamHandler") void testGetUrlHandler() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.8K bytes - Viewed (0) -
src/test/java/jcifs/context/CIFSContextWrapperTest.java
} @Test void testGetCredentials() { // Test getCredentials() method Credentials mockCredentials = mock(Credentials.class); when(mockDelegate.getCredentials()).thenReturn(mockCredentials); assertEquals(mockCredentials, cifsContextWrapper.getCredentials()); verify(mockDelegate).getCredentials(); } @Test void testGetUrlHandler() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 68.9K bytes - Viewed (0)