Class CreateForm

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

public class CreateForm extends Object
The create form for Path Map.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    @Size(max=1000) String
    The username who created this path mapping.
    The timestamp when this path mapping was created.
    The CRUD operation mode (create, update, etc.).
    @Required String
    The processing type for path mapping.
    @Required @Size(max=1000) String
    The regular expression pattern to match request paths.
    @Size(max=1000) String
    The replacement pattern for matched paths.
    @Required @Min(0L) @Max(2147483647L) Integer
    The sort order for this path mapping (0-2147483647).
    @Size(max=1000) String
    The user agent string for this path mapping.
  • 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 path mapping.

    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 operation mode (create, update, etc.).
    • regex

      @Required @Size(max=1000) public @Required @Size(max=1000) String regex
      The regular expression pattern to match request paths.
    • replacement

      @Size(max=1000) public @Size(max=1000) String replacement
      The replacement pattern for matched paths.
    • processType

      @Required public @Required String processType
      The processing type for path mapping.
    • sortOrder

      @Required @Min(0L) @Max(2147483647L) @ValidateTypeFailure public @Required @Min(0L) @Max(2147483647L) Integer sortOrder
      The sort order for this path mapping (0-2147483647).
    • createdBy

      @Size(max=1000) public @Size(max=1000) String createdBy
      The username who created this path mapping.
    • createdTime

      @ValidateTypeFailure public Long createdTime
      The timestamp when this path mapping was created.
    • userAgent

      @Size(max=1000) public @Size(max=1000) String userAgent
      The user agent string for this path mapping.
  • 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 path mapping.