- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 462 for authenticator (0.1 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbAuthentication.java
this.port = port; } /** * Returns the username for SMB authentication. * @return the username */ public String getUsername() { return username; } /** * Sets the username for SMB authentication. * @param username the username to set */ public void setUsername(final String username) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.9K bytes - Viewed (0) -
src/test/java/jcifs/audit/SecurityAuditLoggerTest.java
} @Test @DisplayName("Test log authentication success") void testLogAuthentication() { logger.logAuthentication(true, "testuser", "DOMAIN", "192.168.1.1"); Map<EventType, Long> stats = logger.getStatistics(); assertEquals(Long.valueOf(1), stats.get(EventType.AUTHENTICATION_SUCCESS), "Should have 1 authentication event"); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.6K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/repository/ArtifactRepository.java
* @since 3.0-beta-1 */ boolean isProjectAware(); /** * @param authentication authentication * @since 3.0-alpha-3 */ void setAuthentication(Authentication authentication); /** * @return repository authentication * @since 3.0-alpha-3 */ Authentication getAuthentication(); /** * @param proxy proxy * @since 3.0-alpha-3
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 4.3K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/auth/chain/AuthenticationChain.java
/** * Interface for authentication chain operations. * Provides methods for user management and authentication operations. */ public interface AuthenticationChain { /** * Updates an existing user in the authentication chain. * @param user The user to update. */ void update(User user); /** * Deletes a user from the authentication chain. * @param user The user to delete.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacLogonInfo.java
import java.io.IOException; import java.util.Date; import jcifs.smb.SID; /** * Contains user logon information from a PAC (Privilege Attribute Certificate). * This class parses and provides access to user authentication and authorization * data from Kerberos tickets, including user identity, group memberships, and * logon metadata. */ public class PacLogonInfo { private Date logonTime; private Date logoffTime;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbAuthentication.java
buf.append(port); } buf.append('/'); } return buf.toString(); } /** * Returns the NTLM password authentication. * @return The NTLM password authentication. */ public NtlmPasswordAuthentication getAuthentication() { return new NtlmPasswordAuthentication(domain == null ? "" : domain, username, password); } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Sep 18 09:30:45 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/jcifs/spnego/NegTokenTarg.java
/** * SPNEGO response token (NegTokenTarg) used in SPNEGO authentication exchanges */ public class NegTokenTarg extends SpnegoToken { /** * Result code indicating unspecified result */ public static final int UNSPECIFIED_RESULT = -1; /** * Result code indicating authentication completed successfully */ public static final int ACCEPT_COMPLETED = 0; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/DefaultArtifactRepository.java
public boolean isProjectAware() { return false; } @Override public Authentication getAuthentication() { return authentication; } @Override public void setAuthentication(Authentication authentication) { this.authentication = authentication; } @Override public Proxy getProxy() { return proxy; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 7.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/ApiAdminFileauthAction.java
import org.lastaflute.web.response.JsonResponse; import jakarta.annotation.Resource; /** * API action for admin file authentication management. * Provides RESTful API endpoints for managing file authentication settings in the Fess search engine. * File authentication settings define access credentials and permissions for file-based crawling. * */ public class ApiAdminFileauthAction extends FessApiAdminAction {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmContext.java
import jcifs.util.Crypto; import jcifs.util.Hexdump; /** * For initiating NTLM authentication (including NTLMv2). If you want to add NTLMv2 authentication support to something * this is what you want to use. See the code for details. Note that JCIFS does not implement the acceptor side of NTLM * authentication. * */ public class NtlmContext implements SSPContext {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 17.3K bytes - Viewed (0)