Class ServletDTO

Direct Known Subclasses:
FailedServletDTO

public class ServletDTO extends BaseServletDTO
Represents a jakarta.servlet.Servlet currently being used by a servlet context.
"NotThreadSafe"
  • Field Details

    • patterns

      public String[] patterns
      The request mappings for the servlet.

      The specified patterns are used to determine whether a request is mapped to the servlet. This array is never null. It might be empty for named servlets.

    • multipartEnabled

      public boolean multipartEnabled
      Specifies whether multipart support is enabled.
    • multipartFileSizeThreshold

      public int multipartFileSizeThreshold
      Specifies the size threshold after which the file will be written to disk. If multipart is not enabled for this servlet, 0 is returned.
      See Also:
    • multipartLocation

      public String multipartLocation
      Specifies the location where the files can be stored on disk. If multipart is not enabled for this servlet, null is returned.
      See Also:
    • multipartMaxFileSize

      public long multipartMaxFileSize
      Specifies the maximum size of a file being uploaded. If multipart is not enabled for this servlet, 0 is returned.
      See Also:
    • multipartMaxRequestSize

      public long multipartMaxRequestSize
      Specifies the maximum request size. If multipart is not enabled for this servlet, 0 is returned.
      See Also:
  • Constructor Details

    • ServletDTO

      public ServletDTO()