Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for UserName (0.07 sec)

  1. BsWebAuthentication.java

    updatedTime"); L265: this.updatedTime = value; L266: } L267: L268: public String getUsername() { L269: checkSpecifiedProperty("username"); L270: return convertEmptyToNull(username); L271: } L272: L273: public void setUsername(String value) { L274: registerModifiedProperty("username"); L275: this.username = value; L276: } L277: L278: public String getWebConfigId() { L279: checkSpecifiedProperty("webConfigId"); L280: return convert...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9K bytes
  2. header.jsp

    ></a></li> L45: </c:if> L46: <c:choose> L47: <c:when test="${!empty username && username != 'guest'}"> L48: <li class="nav-item"> L49: <div class="dropdown"> L50: <a class="nav-link dropdown-toggle" data-toggle="dropdown" L51: href="#" role="button" aria-haspopup="true" L52: aria-expanded="false"> <em class="fa fa-fw fa-user"> L53: <span>${username}</span> L54: </a> L55: <div class="dropdown-menu" aria-labelledby="userMenu">...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Sat Oct 24 03:00:28 UTC 2020
      4.2K bytes
  3. header.jsp

    ></a></li> L45: </c:if> L46: <c:choose> L47: <c:when test="${!empty username && username != 'guest'}"> L48: <li class="nav-item"> L49: <div class="dropdown"> L50: <a class="nav-link dropdown-toggle" data-toggle="dropdown" L51: href="#" role="button" aria-haspopup="true" L52: aria-expanded="false"> <em class="fa fa-fw fa-user"> L53: <span>${username}</span> L54: </a> L55: <div class="dropdown-menu" aria-labelledby="userMenu">...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Sat Oct 24 03:00:28 UTC 2020
      4.2K bytes
  4. SpnegoCredential.java

    class SpnegoCredential implements LoginCredential, FessCredential { L21: private final String username; L22: L23: public SpnegoCredential(final String username) { L24: this.username = username; L25: } L26: L27: @Override L28: public String getUserId() { L29: return username; L30: } L31: L32: @Override L33: public String toString() { L34: return "{" + username + "}"; L35: } L36: L37:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1.1K bytes
  5. CommandChain.java

    L59: public void update(final User user) { L60: final String username = user.getName(); L61: final String password = user.getOriginalPassword(); L62: changePassword(username, password); L63: } L64: L65: @Override L66: public void delete(final User user) { L67: final String username = user.getName(); L68: if (isTargetUser(username)) { L69: executeCommand(deleteCommand, username, StringUtil.EMPTY); L70: } L71: } L72: L73: @Override...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.3K bytes
  6. LoginAction.java

    validate(form, messages -> {}, () -> asIndexPage(form)); L73: verifyToken(() -> asIndexPage(form)); L74: final String username = form.username; L75: final String password = form.password; L76: form.clearSecurityInfo(); L77: try { L78: final HtmlResponse loginRedirect = fessLoginAssist.loginRedirect(new LocalUserCredential(username, password), op -> {}, () -> { L79: activityHelper.login(getUserBean()); L80: userInfoHelper.dele...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      6.1K bytes
  7. FessLoginAssist.java

    credential -> { L155: final LocalUserCredential userCredential = credential; L156: final String username = userCredential.getUser(); L157: final String password = userCredential.getPassword(); L158: if (!fessConfig.isAdminUser(username)) { L159: final OptionalEntity<FessUser> ldapUser = ComponentUtil.getLdapManager().login(username, password); L160: if (ldapUser.isPresent()) { L161: return ldapUser; L162: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      7.8K bytes
  8. admin_fileauth_details.jsp

    <tr> L77: <th><la:message L78: key="labels.file_auth_username"/></th> L79: <td>${f:h(username)}<la:hidden property="username"/></td> L80: </tr> L81: <tr> L82: <th><la:message L83: key="labels.file_auth_password"/></th>...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Thu Feb 13 07:47:04 UTC 2020
      6.2K bytes
  9. index.jsp

    ></a></li> L44: </c:if> L45: <c:choose> L46: <c:when test="${!empty username && username != 'guest'}"> L47: <li class="nav-item"> L48: <div class="dropdown"> L49: <a class="nav-link dropdown-toggle" data-toggle="dropdown" L50: href="#" role="button" aria-haspopup="true" L51: aria-expanded="false"> <em class="fa fa-fw fa-user">${username} L52: </a> L53: <div class="dropdown-menu" aria-labelledby="userMenu">...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Sat Oct 26 01:07:52 UTC 2024
      6.9K bytes
  10. LdapChain.java

    L29: public void delete(final User user) { L30: ComponentUtil.getLdapManager().delete(user); L31: } L32: L33: @Override L34: public boolean changePassword(final String username, final String password) { L35: final boolean changed = ComponentUtil.getLdapManager().changePassword(username, password); L36: return !changed || ComponentUtil.getFessConfig().isLdapAdminSyncPassword(); L37: } L38: L39: @Override L40: public User load(final User user) { L41: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1.4K bytes
Back to top