Class CreateForm

java.lang.Object
org.codelibs.fess.app.web.admin.webauth.CreateForm
Direct Known Subclasses:
CreateBody, EditForm

public class CreateForm extends Object
The create form for Web Authentication.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    @Size(max=100) String
    The authentication realm.
    @Size(max=1000) String
    The user who created this authentication configuration.
    The timestamp when this authentication configuration was created.
    The CRUD mode for the form.
    @Size(max=100) String
    The hostname for the web authentication.
    @Size(max=1000) String
    Additional parameters for the authentication.
    @Size(max=100) String
    The password for authentication.
    @Min(0L) @Max(2147483647L) Integer
    The port number for the web authentication.
    @Size(max=10) String
    The protocol scheme (http, https).
    @Required @Size(max=100) String
    The username for authentication.
    @Required @Size(max=1000) String
    The web configuration ID this authentication is associated with.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Default constructor.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Initializes the form with default values for creating a new web authentication configuration.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • crudMode

      @ValidateTypeFailure public Integer crudMode
      The CRUD mode for the form.
    • hostname

      @Size(max=100) public @Size(max=100) String hostname
      The hostname for the web authentication.
    • port

      @Min(0L) @Max(2147483647L) @ValidateTypeFailure public @Min(0L) @Max(2147483647L) Integer port
      The port number for the web authentication.
    • authRealm

      @Size(max=100) public @Size(max=100) String authRealm
      The authentication realm.
    • protocolScheme

      @Size(max=10) public @Size(max=10) String protocolScheme
      The protocol scheme (http, https).
    • username

      @Required @Size(max=100) public @Required @Size(max=100) String username
      The username for authentication.
    • password

      @Size(max=100) public @Size(max=100) String password
      The password for authentication.
    • parameters

      @Size(max=1000) public @Size(max=1000) String parameters
      Additional parameters for the authentication.
    • webConfigId

      @Required @Size(max=1000) public @Required @Size(max=1000) String webConfigId
      The web configuration ID this authentication is associated with.
    • createdBy

      @Size(max=1000) public @Size(max=1000) String createdBy
      The user who created this authentication configuration.
    • createdTime

      @ValidateTypeFailure public Long createdTime
      The timestamp when this authentication configuration was created.
  • Constructor Details

    • CreateForm

      public CreateForm()
      Default constructor.
  • Method Details

    • initialize

      public void initialize()
      Initializes the form with default values for creating a new web authentication configuration.