Class RequestInfoDTO
java.lang.Object
org.osgi.dto.DTO
org.osgi.service.servlet.runtime.dto.RequestInfoDTO
Represents the services used to process a specific request.
- "NotThreadSafe"
-
Field Summary
Modifier and TypeFieldDescriptionThe servlet filters processing this request.The path of the request relative to the root.The resource processing this request.long
The service id of the servlet context processing the request represented by this DTO.The servlet processing this request. -
Constructor Summary
-
Method Summary
-
Field Details
-
path
The path of the request relative to the root. -
servletContextId
public long servletContextIdThe service id of the servlet context processing the request represented by this DTO. -
filterDTOs
The servlet filters processing this request. If no servlet filters are called for processing this request, an empty array is returned. -
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 isnull
. -
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 isnull
.
-
-
Constructor Details
-
RequestInfoDTO
public RequestInfoDTO()
-