- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 29 for getSession (0.47 sec)
-
src/main/java/org/codelibs/fess/app/web/login/LoginAction.java
}, validationErrorLambda); return null; }); } private OptionalThing<HttpSession> getSession() { final HttpSession session = request.getSession(false); if (session != null) { return OptionalEntity.of(session); } return OptionalEntity.empty(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/api/WebApiRequestTest.java
@Override public StringBuffer getRequestURL() { return null; } @Override public HttpSession getSession(boolean create) { return null; } @Override public HttpSession getSession() { return null; } @Override public String changeSessionId() { return null; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/filter/CorsFilterTest.java
public String getServletPath() { return ""; } @Override public jakarta.servlet.http.HttpSession getSession(boolean create) { return null; } @Override public jakarta.servlet.http.HttpSession getSession() { return null; } @Override public String changeSessionId() { return null;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 22.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java
if (logger.isDebugEnabled()) { logger.debug("Logging in with OpenID Connect Authenticator"); } final HttpSession session = request.getSession(false); if (session != null) { final String sesState = (String) session.getAttribute(OIC_STATE); if (StringUtil.isNotBlank(sesState)) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/UserInfoHelper.java
*/ public void storeQueryId(final String queryId, final List<Map<String, Object>> documentItems) { LaRequestUtil.getOptionalRequest().map(req -> req.getSession(false)).ifPresent(session -> { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final List<String> docIdList = new ArrayList<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/filter/WebApiFilterTest.java
return null; } @Override public jakarta.servlet.http.HttpSession getSession(boolean create) { return null; } @Override public jakarta.servlet.http.HttpSession getSession() { return null; } @Override public String changeSessionId() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.2K 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 Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 16.4K bytes - Viewed (1) -
src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java
throw new UnsupportedOperationException(); } @Override public jakarta.servlet.http.HttpSession getSession(boolean create) { throw new UnsupportedOperationException(); } @Override public jakarta.servlet.http.HttpSession getSession() { throw new UnsupportedOperationException(); } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/search/SearchAction.java
public HtmlResponse search(final SearchForm form) { if (viewHelper.isUseSession()) { LaRequestUtil.getOptionalRequest().ifPresent(request -> { final HttpSession session = request.getSession(false); if (session != null && form.num != null) { session.setAttribute(Constants.RESULTS_PER_PAGE, form.num); } }); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/cors/CorsHandlerTest.java
return ""; } @Override public jakarta.servlet.http.HttpSession getSession(boolean create) { return null; } @Override public jakarta.servlet.http.HttpSession getSession() { return null; } @Override public String changeSessionId() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 25.9K bytes - Viewed (0)