Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for ActionResponse (0.06 sec)

  1. src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java

         *
         * @return ActionResponse containing the SSO metadata or error page
         */
        @Execute
        public ActionResponse metadata() {
            final SsoManager ssoManager = ComponentUtil.getSsoManager();
            try {
                final ActionResponse actionResponse = ssoManager.getResponse(SsoResponseType.METADATA);
                if (actionResponse == null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/log/AdminLogAction.java

        /**
         * Downloads a log file by its encoded ID.
         *
         * @param id the Base64 encoded filename of the log file to download
         * @return ActionResponse containing the log file stream
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public ActionResponse download(final String id) {
            final String filename = new String(Base64.getDecoder().decode(id), StandardCharsets.UTF_8).replace("..", "").replaceAll("\\s", "");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/osdd/OsddAction.java

     */
    package org.codelibs.fess.app.web.osdd;
    
    import org.codelibs.fess.app.web.base.FessSearchAction;
    import org.lastaflute.web.Execute;
    import org.lastaflute.web.response.ActionResponse;
    
    /**
     * OSDD (OpenSearch Description Document) action.
     */
    public class OsddAction extends FessSearchAction {
    
        /**
         * Default constructor.
         */
        public OsddAction() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.fess.util.DocumentUtil;
    import org.dbflute.util.DfTypeUtil;
    import org.lastaflute.web.Execute;
    import org.lastaflute.web.response.ActionResponse;
    import org.lastaflute.web.response.HtmlResponse;
    import org.lastaflute.web.response.StreamResponse;
    
    import jakarta.annotation.Resource;
    
    /**
     * Action class for handling document redirection requests.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailAction.java

         * Serves a thumbnail image for the specified document.
         *
         * @param form the thumbnail request form containing document ID and query parameters
         * @return ActionResponse containing the thumbnail image or 404 if not found
         */
        @Execute
        public ActionResponse index(final ThumbnailForm form) {
            validate(form, messages -> {}, () -> asHtml(virtualHost(path_Error_ErrorJsp)));
            if (isLoginRequired()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/FessApiAction.java

         *
         * @param runtime the action runtime context containing request information
         * @return ActionResponse with unauthorized error if access denied, otherwise delegates to parent
         */
        @Override
        public ActionResponse godHandPrologue(final ActionRuntime runtime) {
            if (!isAccessAllowed()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

    import org.lastaflute.core.time.TimeManager;
    import org.lastaflute.db.dbflute.accesscontext.AccessContextArranger;
    import org.lastaflute.web.TypicalAction;
    import org.lastaflute.web.response.ActionResponse;
    import org.lastaflute.web.ruts.process.ActionRuntime;
    import org.lastaflute.web.servlet.request.RequestManager;
    import org.lastaflute.web.servlet.request.ResponseManager;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/base/login/ActionResponseCredential.java

    import org.lastaflute.web.response.ActionResponse;
    
    /**
     * The credential for action response.
     */
    public class ActionResponseCredential implements LoginCredential {
    
        private final Supplier<ActionResponse> action;
    
        /**
         * Constructor.
         * @param action The action.
         */
        public ActionResponseCredential(final Supplier<ActionResponse> action) {
            this.action = action;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

    import org.codelibs.fess.helper.CrawlingConfigHelper;
    import org.dbflute.optional.OptionalThing;
    import org.lastaflute.di.util.LdiFileUtil;
    import org.lastaflute.web.login.LoginManager;
    import org.lastaflute.web.response.ActionResponse;
    import org.lastaflute.web.ruts.process.ActionRuntime;
    import org.lastaflute.web.util.LaServletContextUtil;
    
    import jakarta.annotation.Resource;
    import jakarta.servlet.ServletContext;
    
    /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessActionAdjustmentProvider.java

    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.util.DfTypeUtil;
    import org.lastaflute.web.path.ActionAdjustmentProvider;
    import org.lastaflute.web.path.FormMappingOption;
    import org.lastaflute.web.response.ActionResponse;
    import org.lastaflute.web.response.HtmlResponse;
    import org.lastaflute.web.response.JsonResponse;
    import org.lastaflute.web.response.StreamResponse;
    import org.lastaflute.web.response.XmlResponse;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
Back to top