Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for Change (0.18 sec)

  1. src/main/java/org/codelibs/fess/app/web/profile/ProfileAction.java

                userService.changePassword(username, form.newPassword);
                saveInfo(messages -> messages.addSuccessChangedPassword(GLOBAL));
            } catch (final Exception e) {
                logger.warn("Failed to change password for {}", username, e);
                throwValidationError(messages -> messages.addErrorsFailedToChangePassword(GLOBAL), toIndexPage);
            }
            return redirect(getClass());
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/login/LoginAction.java

                userService.changePassword(username, form.password);
                saveInfo(messages -> messages.addSuccessChangedPassword(GLOBAL));
            } catch (final Exception e) {
                logger.warn("Failed to change newPassword for {}", username, e);
                throwValidationError(messages -> messages.addErrorsFailedToChangePassword(GLOBAL), toIndexPage);
            }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHook.java

    import org.lastaflute.web.response.ApiResponse;
    import org.lastaflute.web.response.JsonResponse;
    
    /**
     * @author jflute
     */
    public class FessApiFailureHook implements ApiFailureHook { // #change_it for handling API failure
    
        private static final Logger logger = LogManager.getLogger(FessApiFailureHook.class);
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

        private static final Logger logger = LogManager.getLogger(FessBaseAction.class);
    
        /** The application type for FESs, e.g. used by access context. */
        protected static final String APP_TYPE = "FES"; // #change_it_first
    
        /** The user type for Admin, e.g. used by access context. */
        protected static final String USER_TYPE = "A";
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        public static final String ERRORS_no_user_for_changing_password = "{errors.no_user_for_changing_password}";
    
        /** The key of the message: Failed to change your password. */
        public static final String ERRORS_failed_to_change_password = "{errors.failed_to_change_password}";
    
        /** The key of the message: Unknown version information. */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/FessFwAssistantDirector.java

        protected FessUserTimeZoneProcessProvider createUserTimeZoneProcessProvider() {
            return new FessUserTimeZoneProcessProvider();
        }
    
        protected FessCookieResourceProvider createCookieResourceProvider() { // #change_it_first
            final InvertibleCryptographer cr = InvertibleCryptographer.createAesCipher("*unused@");
            return new FessCookieResourceProvider(fessConfig, cr);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java

    import org.lastaflute.web.servlet.session.SessionManager;
    
    /**
     * @author jflute
     * @author shinsuke
     */
    public class FessLoginAssist extends TypicalLoginAssist<String, FessUserBean, FessUser> // #change_it also UserBean
            implements PrimaryLoginManager {
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.8K bytes
    - Viewed (1)
  8. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserTimeZoneProcessProvider.java

            return OptionalObject.empty();
        }
    
        @Override
        public TimeZone getRequestedTimeZone(final RequestManager requestManager) { // not null
            return centralTimeZone; // you can change it if you like
        }
    
        @Override
        public String toString() {
            final StringBuilder sb = new StringBuilder();
            sb.append(DfTypeUtil.toClassTitle(this));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String PAGING_PAGE_SIZE = "paging.page.size";
    
        /** The key of the configuration. e.g. 5 */
        String PAGING_PAGE_RANGE_SIZE = "paging.page.range.size";
    
        /** The key of the configuration. e.g. true */
        String PAGING_PAGE_RANGE_FILL_LIMIT = "paging.page.range.fill.limit";
    
        /** The key of the configuration. e.g. 1000 */
        String PAGE_DOCBOOST_MAX_FETCH_SIZE = "page.docboost.max.fetch.size";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (5)
  10. src/main/java/org/codelibs/fess/mylasta/action/FessUserBean.java

    import org.codelibs.fess.Constants;
    import org.codelibs.fess.entity.FessUser;
    import org.lastaflute.web.login.TypicalUserBean;
    
    /**
     * @author jflute
     */
    public class FessUserBean extends TypicalUserBean<String> { // #change_it also LoginAssist
    
        // ===================================================================================
        //                                                                          Definition
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.4K bytes
    - Viewed (0)
Back to top