Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for notBlank (0.04 sec)

  1. PasswordForm.java

    language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.app.web.login; L17: L18:import jakarta.validation.constraints.NotBlank; L19: L20:public class PasswordForm { L21: L22: public String username; L23: L24: @NotBlank L25: public String password; L26: L27: @NotBlank L28: public String confirmPassword; L29: L30: public void clearSecurityInfo() { L31: password = null; L32: confirmPassword = null; L33: } L34: L35:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      967 bytes
  2. ProfileForm.java

    License. L15: */ L16:/** L17: * @author Keiichi Watanabe L18: */ L19:package org.codelibs.fess.app.web.profile; L20: L21:import jakarta.validation.constraints.NotBlank; L22: L23:public class ProfileForm { L24: L25: @NotBlank L26: public String oldPassword; L27: L28: @NotBlank L29: public String newPassword; L30: L31: @NotBlank L32: public String confirmNewPassword; L33: L34: public void clearSecurityInfo() { L35: oldPassword = null; L36: newPassword = null; L37:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      1K bytes
  3. LoginForm.java

    for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.app.web.login; L17: L18:import jakarta.validation.constraints.NotBlank; L19: L20:public class LoginForm { L21: L22: @NotBlank L23: public String username; L24: L25: @NotBlank L26: public String password; L27: L28: public String confirmPassword; L29: L30: public void clearSecurityInfo() { L31: password = null; L32: confirmPassword = null; L33:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      964 bytes
  4. FessMessages.java

    public static final String CONSTRAINTS_ModCheck_MESSAGE = "{constraints.ModCheck.message}"; L115: L116: /** The key of the message: {item} may not be empty. */ L117: public static final String CONSTRAINTS_NotBlank_MESSAGE = "{constraints.NotBlank.message}"; L118: L119: /** The key of the message: {item} may not be empty. */ L120: public static final String CONSTRAINTS_NotEmpty_MESSAGE = "{constraints.NotEmpty.message}"; L121: L122: /** The key of the message: script expression "{script}"...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      119.9K bytes
Back to top