- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for getAuthentication (0.39 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/artifact/deployer/DefaultArtifactDeployer.java
*/ if (deploymentRepository instanceof DefaultArtifactRepository && deploymentRepository.getAuthentication() == null) { RemoteRepository.Builder builder = new RemoteRepository.Builder(remoteRepo); builder.setAuthentication(session.getAuthenticationSelector().getAuthentication(remoteRepo)); builder.setProxy(session.getProxySelector().getProxy(remoteRepo));
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 6.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java
authentication.setPassphrase(server.getPassphrase()); repository.setAuthentication(authentication); } else { repository.setAuthentication(null); } } } } private Authentication getAuthentication(RepositorySystemSession session, ArtifactRepository repository) { if (session != null) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 31.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbAuthentication.java
} return buf.toString(); } /** * Returns the NTLM password authentication. * @return The NTLM password authentication. */ public NtlmPasswordAuthentication getAuthentication() { return new NtlmPasswordAuthentication(domain == null ? "" : domain, username, password); } /** * Returns the server address. * @return The server address. */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Sep 18 09:30:45 UTC 2025 - 3.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/DefaultArtifactRepository.java
} @Override 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/opensearch/config/exentity/WebAuthentication.java
private static final long serialVersionUID = 1L; private static final Logger logger = LogManager.getLogger(WebAuthentication.class); private WebConfig webConfig; public Authentication getAuthentication() { return new AuthenticationImpl(getAuthScope(), getCredentials(), getAuthScheme()); } private AuthScheme getAuthScheme() { final String scheme = getProtocolScheme();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java
@Override public boolean isProjectAware() { return false; } @Override public void setAuthentication(Authentication authentication) {} @Override public Authentication getAuthentication() { return null; } @Override public void setProxy(Proxy proxy) {} @Override
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 13.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java
} // consider the username&password because a repo manager might block artifacts depending on authorization Authentication auth = repository.getAuthentication(); if (auth != null) { int hash = (auth.getUsername() + auth.getPassword()).hashCode(); buffer.append(hash).append('@'); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Apr 22 22:13:51 UTC 2025 - 12.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Sep 18 09:30:45 UTC 2025 - 23K bytes - Viewed (0)