Class RequestInfoDTO


  • public class RequestInfoDTO
    extends DTO
    Represents the services used to process a specific request.
    • Field Detail

      • path

        public String path
        The path of the request relative to the root.
      • servletContextId

        public long servletContextId
        The service id of the servlet context processing the request represented by this DTO.
      • filterDTOs

        public FilterDTO[] filterDTOs
        The servlet filters processing this request. If no servlet filters are called for processing this request, an empty array is returned.
      • servletDTO

        public ServletDTO servletDTO
        The servlet processing this request. If the request is processed by a servlet, this field points to the DTO of the servlet. If the request is processed by another type of component like a resource, this field is null.
      • resourceDTO

        public ResourceDTO resourceDTO
        The resource processing this request. If the request is processed by a resource, this field points to the DTO of the resource. If the request is processed by another type of component like a servlet, this field is null.
    • Constructor Detail

      • RequestInfoDTO

        public RequestInfoDTO()