- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 289 for logoff (0.09 sec)
-
src/main/webapp/WEB-INF/orig/view/error/redirect.jsp
redirectPage.append("/error/systemerror/"); response.sendRedirect(redirectPage.toString()); } else { response.sendError(statusCode); } } else if("logOut".equals(type)) { redirectPage.append("/login/?type=logout&code=" + statusCode); response.sendRedirect(redirectPage.toString()); } else if("badRequest".equals(type)) { redirectPage.append("/error/badrequest/");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Dec 23 06:18:48 UTC 2023 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java
} return redirect(LoginAction.class); } } @Execute public ActionResponse logout() { final SsoManager ssoManager = ComponentUtil.getSsoManager(); try { final ActionResponse actionResponse = ssoManager.getResponse(SsoResponseType.LOGOUT); if (actionResponse == null) { throw responseManager.new400("Unsupported request type.");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.1K bytes - Viewed (0) -
src/main/webapp/WEB-INF/web.xml
<error-code>403</error-code> <location>/WEB-INF/view/error/redirect.jsp?type=logOut</location> </error-page> <error-page> <error-code>404</error-code> <location>/WEB-INF/view/error/redirect.jsp?type=notFound</location> </error-page> <error-page> <error-code>408</error-code> <location>/WEB-INF/view/error/redirect.jsp?type=logOut</location> </error-page> <error-page> <error-code>500</error-code>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jul 29 02:54:01 UTC 2024 - 7.1K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/advance.jsp
<la:message key="labels.administration" /> </la:link> </c:if> <la:link href="/logout/" styleClass="dropdown-item"> <la:message key="labels.logout" /> </la:link> </div> </div> </li> </c:when> <c:when test="${ pageLoginLink }">
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 14.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
samlUser.getNameIdFormat(), samlUser.getNameidNameQualifier(), samlUser.getNameidSPNameQualifier()); return auth.logout(null, logoutRequestParams, true); } catch (final Exception e) { logger.warn("Failed to logout from IdP: {}", samlUser, e); } return null; }).orElse(null); } return null; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 15.2K bytes - Viewed (0) -
istioctl/pkg/describe/testdata/describe/tls_config.json
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jun 15 15:02:17 UTC 2023 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/SsoManager.java
} } return null; } public String logout(final FessUserBean user) { if (available()) { final SsoAuthenticator authenticator = getAuthenticator(); if (authenticator != null) { return authenticator.logout(user); } } return null; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/SsoResponseType.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.sso; public enum SsoResponseType { METADATA, LOGOUT;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 707 bytes - Viewed (0) -
internal/logger/logger.go
if err == nil { return } logIf(ctx, subsystem, err, errKind...) } // LogIf prints a detailed error message during // the execution of the server, if it is not an // ignored error. func LogIf(ctx context.Context, subsystem string, err error, errKind ...interface{}) { if logIgnoreError(err) { return } logIf(ctx, subsystem, err, errKind...) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 22 09:43:48 UTC 2024 - 12.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ActivityHelper.java
valueMap.put("user", fessCredential.getUserId()); } }); log(valueMap); } public void logout(final OptionalThing<FessUserBean> user) { final Map<String, String> valueMap = new LinkedHashMap<>(); valueMap.put("action", Action.LOGOUT.name()); valueMap.put("user", user.map(FessUserBean::getUserId).orElse("-")); valueMap.put("permissions",
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7.7K bytes - Viewed (0)