Class CreateForm

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

public class CreateForm extends Object
The create form for Request Header.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    @Size(max=1000) String
    The username of who created this request header.
    The timestamp when this request header was created.
    The CRUD mode for the form.
    @Required @Size(max=100) String
    The name of the request header.
    @Required @Size(max=1000) String
    The value of the request header.
    @Required @Size(max=1000) String
    The web configuration ID associated with this request header.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Creates a new CreateForm instance.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Initializes the form with default values for creating a new request header.

    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.
    • name

      @Required @Size(max=100) public @Required @Size(max=100) String name
      The name of the request header.
    • value

      @Required @Size(max=1000) public @Required @Size(max=1000) String value
      The value of the request header.
    • webConfigId

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

      @Size(max=1000) public @Size(max=1000) String createdBy
      The username of who created this request header.
    • createdTime

      @ValidateTypeFailure public Long createdTime
      The timestamp when this request header was created.
  • Constructor Details

    • CreateForm

      public CreateForm()
      Creates a new CreateForm instance.
  • Method Details

    • initialize

      public void initialize()
      Initializes the form with default values for creating a new request header.