- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 211 for getSession (0.11 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactFactoryRequest.java
/** * * * @since 4.0.0 */ @Experimental @Immutable public interface ArtifactFactoryRequest { @Nonnull Session getSession(); String getGroupId(); String getArtifactId(); String getVersion(); String getClassifier(); String getExtension(); String getType(); static ArtifactFactoryRequest build(
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Mar 23 05:29:39 UTC 2023 - 5.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilderRequest.java
import static org.apache.maven.api.services.BaseRequest.nonNull; /** * * @since 4.0.0 */ @Experimental public interface ToolchainsBuilderRequest { @Nonnull Session getSession(); /** * Gets the installation Toolchains source. * * @return the installation Toolchains source or {@code null} if none */ @Nonnull
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Aug 22 14:47:43 UTC 2024 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NetworkExplorer.java
UniAddress dc; String msg, pathInfo, server = null; boolean offerBasic, possibleWorkgroup = true; NtlmPasswordAuthentication ntlm = null; HttpSession ssn = req.getSession( false ); if(( pathInfo = req.getPathInfo() ) != null ) { int i; server = parseServerAndShare( pathInfo ); if( server != null && ( i = server.indexOf( '/' )) > 0 ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 22 03:57:31 UTC 2020 - 19.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactCoordinatesFactoryRequest.java
* * @since 4.0.0 */ @Experimental @Immutable public interface ArtifactCoordinatesFactoryRequest { @Nonnull Session getSession(); String getGroupId(); String getArtifactId(); String getVersion(); String getClassifier(); String getExtension(); String getType(); String getCoordinatesString(); @Nonnull
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 7.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/installer/DefaultArtifactInstaller.java
InstallRequest request = new InstallRequest(); request.setTrace(RequestTrace.newChild(null, legacySupport.getSession().getCurrentProject())); org.eclipse.aether.artifact.Artifact mainArtifact = RepositoryUtils.toArtifact(artifact); mainArtifact = mainArtifact.setFile(source); request.addArtifact(mainArtifact);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderRequest.java
* TODO: add validationLevel, activeProfileIds, inactiveProfileIds, resolveDependencies * * @since 4.0.0 */ @Experimental @Immutable public interface ProjectBuilderRequest { @Nonnull Session getSession(); @Nonnull Optional<Path> getPath(); @Nonnull Optional<Source> getSource(); boolean isAllowStubModel(); boolean isRecursive(); boolean isProcessPlugins();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Sep 12 06:19:14 UTC 2024 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
logger.debug("Logging in with SAML Authenticator"); } final HttpServletResponse response = LaResponseUtil.getResponse(); final HttpSession session = request.getSession(false); if (session != null) { final String sesState = (String) session.getAttribute(SAML_STATE); if (StringUtil.isNotBlank(sesState)) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 15.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/DefaultMaven.java
session.setSession(defaultSessionFactory.newSession(session)); sessionScope.seed(MavenSession.class, session); sessionScope.seed(Session.class, session.getSession()); sessionScope.seed(InternalMavenSession.class, InternalMavenSession.from(session.getSession())); legacySupport.setSession(session);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 27.5K bytes - Viewed (1) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilderRequest.java
/** * Collects settings that control the building of effective settings. */ @Experimental @Immutable public interface SettingsBuilderRequest { @Nonnull Session getSession(); /** * Gets the installation settings source. * * @return the installation settings source or {@code null} if none */ @Nonnull Optional<Source> getInstallationSettingsSource();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 17 09:25:53 UTC 2024 - 7.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java
if (logger.isDebugEnabled()) { logger.debug("Logging in with Azure AD Authenticator"); } final HttpSession session = request.getSession(false); if (session != null && containsAuthenticationData(request)) { try { return processAuthenticationData(request); } catch (final Exception e) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 28.2K bytes - Viewed (0)