Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 608 for logout (2.02 sec)

  1. src/main/java/org/codelibs/fess/app/web/logout/LogoutAction.java

        @Execute
        public HtmlResponse index() {
            final OptionalThing<FessUserBean> userBean = getUserBean();
            activityHelper.logout(userBean);
            final String redirectUrl = userBean.map(user -> ComponentUtil.getSsoManager().logout(user)).orElse(null);
            fessLoginAssist.logout();
            userInfoHelper.deleteUserCodeFromCookie(request);
            if (StringUtil.isNotBlank(redirectUrl)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. istioctl/pkg/describe/testdata/describe/tls_config.json

                          "operation": "productpage.default.svc.cluster.local:9080/login"
                        }
                      },
                      {
                        "match": {
                          "path": "/logout",
                          "case_sensitive": true
                        },
                        "route": {
                          "cluster": "outbound|9080||productpage.default.svc.cluster.local",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 707 bytes
    - Viewed (0)
  5. 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. samples/ambient-argo/application/ingress-gateway.yaml

            value: /productpage
        - path:
            type: PathPrefix
            value: /static
        - path:
            type: Exact
            value: /login
        - path:
            type: Exact
            value: /logout
        - path:
            type: PathPrefix
            value: /api/v1/products
        backendRefs:
        - name: productpage
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 760 bytes
    - Viewed (0)
  7. 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. samples/bookinfo/gateway-api/bookinfo-gateway.yaml

            value: /productpage
        - path:
            type: PathPrefix
            value: /static
        - path:
            type: Exact
            value: /login
        - path:
            type: Exact
            value: /logout
        - path:
            type: PathPrefix
            value: /api/v1/products
        backendRefs:
        - name: productpage
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 03 18:46:50 UTC 2022
    - 761 bytes
    - Viewed (0)
  9. samples/bookinfo/networking/bookinfo-gateway.yaml

      - "*"
      gateways:
      - bookinfo-gateway
      http:
      - match:
        - uri:
            exact: /productpage
        - uri:
            prefix: /static
        - uri:
            exact: /login
        - uri:
            exact: /logout
        - uri:
            prefix: /api/v1/products
        route:
        - destination:
            host: productpage
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 14:13:54 UTC 2023
    - 873 bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/index.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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top