Uses of Enum Class
me.desair.tus.server.HttpMethod
Package
Description
-
Uses of HttpMethod in me.desair.tus.server
Modifier and TypeMethodDescriptionstatic HttpMethod
static HttpMethod
HttpMethod.getMethodIfSupported
(jakarta.servlet.http.HttpServletRequest request, Set<HttpMethod> supportedHttpMethods) static HttpMethod
Returns the enum constant of this class with the specified name.static HttpMethod[]
HttpMethod.values()
Returns an array containing the constants of this enum class, in the order they are declared.Modifier and TypeMethodDescriptionTusExtension.getMinimalSupportedHttpMethods()
The minimal list of HTTP methods that this extension needs to function properlyTusFileUploadService.getSupportedHttpMethods()
Get all HTTP methods that are supported by this TusUploadService based on the enabled and/or disabled tus extensions.Modifier and TypeMethodDescriptionprotected void
TusFileUploadService.executeProcessingByFeatures
(HttpMethod method, TusServletRequest servletRequest, TusServletResponse servletResponse, String ownerKey) void
TusExtension.handleError
(HttpMethod method, TusServletRequest servletRequest, TusServletResponse servletResponse, UploadStorageService uploadStorageService, String ownerKey) If a request is invalid, or when processing the request fails, it might be necessary to react to this failure.void
RequestHandler.process
(HttpMethod method, TusServletRequest servletRequest, TusServletResponse servletResponse, UploadStorageService uploadStorageService, String ownerKey) void
TusExtension.process
(HttpMethod method, TusServletRequest servletRequest, TusServletResponse servletResponse, UploadStorageService uploadStorageService, String ownerKey) Process the given requestprotected void
TusFileUploadService.processLockedRequest
(HttpMethod method, TusServletRequest request, TusServletResponse response, String ownerKey) protected void
TusFileUploadService.processTusException
(HttpMethod method, TusServletRequest request, TusServletResponse response, String ownerKey, TusException exception) boolean
RequestHandler.supports
(HttpMethod method) boolean
RequestValidator.supports
(HttpMethod method) Test if this validator supports the given HTTP methodvoid
RequestValidator.validate
(HttpMethod method, jakarta.servlet.http.HttpServletRequest request, UploadStorageService uploadStorageService, String ownerKey) Validate if the request should be processedvoid
TusExtension.validate
(HttpMethod method, jakarta.servlet.http.HttpServletRequest servletRequest, UploadStorageService uploadStorageService, String ownerKey) Validate the given requestprotected void
TusFileUploadService.validateRequest
(HttpMethod method, jakarta.servlet.http.HttpServletRequest servletRequest, String ownerKey) Modifier and TypeMethodDescriptionstatic HttpMethod
HttpMethod.getMethodIfSupported
(jakarta.servlet.http.HttpServletRequest request, Set<HttpMethod> supportedHttpMethods) -
Uses of HttpMethod in me.desair.tus.server.checksum
Modifier and TypeMethodDescriptionvoid
ChecksumOptionsRequestHandler.process
(HttpMethod method, TusServletRequest servletRequest, TusServletResponse servletResponse, UploadStorageService uploadStorageService, String ownerKey) void
ChecksumPatchRequestHandler.process
(HttpMethod method, TusServletRequest servletRequest, TusServletResponse servletResponse, UploadStorageService uploadStorageService, String ownerKey) boolean
ChecksumPatchRequestHandler.supports
(HttpMethod method) -
Uses of HttpMethod in me.desair.tus.server.checksum.validation
Modifier and TypeMethodDescriptionboolean
ChecksumAlgorithmValidator.supports
(HttpMethod method) void
ChecksumAlgorithmValidator.validate
(HttpMethod method, jakarta.servlet.http.HttpServletRequest request, UploadStorageService uploadStorageService, String ownerKey) -
Uses of HttpMethod in me.desair.tus.server.concatenation
Modifier and TypeMethodDescriptionvoid
ConcatenationHeadRequestHandler.process
(HttpMethod method, TusServletRequest servletRequest, TusServletResponse servletResponse, UploadStorageService uploadStorageService, String ownerKey) void
ConcatenationPostRequestHandler.process
(HttpMethod method, TusServletRequest servletRequest, TusServletResponse servletResponse, UploadStorageService uploadStorageService, String ownerKey) boolean
ConcatenationHeadRequestHandler.supports
(HttpMethod method) boolean
ConcatenationPostRequestHandler.supports
(HttpMethod method) -
Uses of HttpMethod in me.desair.tus.server.concatenation.validation
Modifier and TypeMethodDescriptionboolean
NoUploadLengthOnFinalValidator.supports
(HttpMethod method) boolean
PartialUploadsExistValidator.supports
(HttpMethod method) boolean
PatchFinalUploadValidator.supports
(HttpMethod method) void
NoUploadLengthOnFinalValidator.validate
(HttpMethod method, jakarta.servlet.http.HttpServletRequest request, UploadStorageService uploadStorageService, String ownerKey) void
PartialUploadsExistValidator.validate
(HttpMethod method, jakarta.servlet.http.HttpServletRequest request, UploadStorageService uploadStorageService, String ownerKey) void
PatchFinalUploadValidator.validate
(HttpMethod method, jakarta.servlet.http.HttpServletRequest request, UploadStorageService uploadStorageService, String ownerKey) -
Uses of HttpMethod in me.desair.tus.server.core
Modifier and TypeMethodDescriptionvoid
CoreDefaultResponseHeadersHandler.process
(HttpMethod method, TusServletRequest servletRequest, TusServletResponse servletResponse, UploadStorageService uploadStorageService, String ownerKey) void
CoreHeadRequestHandler.process
(HttpMethod method, TusServletRequest servletRequest, TusServletResponse servletResponse, UploadStorageService uploadStorageService, String ownerKey) void
CoreOptionsRequestHandler.process
(HttpMethod method, TusServletRequest servletRequest, TusServletResponse servletResponse, UploadStorageService uploadStorageService, String ownerKey) void
CorePatchRequestHandler.process
(HttpMethod method, TusServletRequest servletRequest, TusServletResponse servletResponse, UploadStorageService uploadStorageService, String ownerKey) boolean
CoreDefaultResponseHeadersHandler.supports
(HttpMethod method) boolean
CoreHeadRequestHandler.supports
(HttpMethod method) boolean
CoreOptionsRequestHandler.supports
(HttpMethod method) boolean
CorePatchRequestHandler.supports
(HttpMethod method) -
Uses of HttpMethod in me.desair.tus.server.core.validation
Modifier and TypeMethodDescriptionboolean
ContentLengthValidator.supports
(HttpMethod method) boolean
ContentTypeValidator.supports
(HttpMethod method) boolean
HttpMethodValidator.supports
(HttpMethod method) boolean
IdExistsValidator.supports
(HttpMethod method) boolean
TusResumableValidator.supports
(HttpMethod method) boolean
UploadOffsetValidator.supports
(HttpMethod method) void
ContentLengthValidator.validate
(HttpMethod method, jakarta.servlet.http.HttpServletRequest request, UploadStorageService uploadStorageService, String ownerKey) void
ContentTypeValidator.validate
(HttpMethod method, jakarta.servlet.http.HttpServletRequest request, UploadStorageService uploadStorageService, String ownerKey) void
HttpMethodValidator.validate
(HttpMethod method, jakarta.servlet.http.HttpServletRequest request, UploadStorageService uploadStorageService, String ownerKey) void
IdExistsValidator.validate
(HttpMethod method, jakarta.servlet.http.HttpServletRequest request, UploadStorageService uploadStorageService, String ownerKey) void
TusResumableValidator.validate
(HttpMethod method, jakarta.servlet.http.HttpServletRequest request, UploadStorageService uploadStorageService, String ownerKey) void
UploadOffsetValidator.validate
(HttpMethod method, jakarta.servlet.http.HttpServletRequest request, UploadStorageService uploadStorageService, String ownerKey) -
Uses of HttpMethod in me.desair.tus.server.creation
Modifier and TypeMethodDescriptionvoid
CreationHeadRequestHandler.process
(HttpMethod method, TusServletRequest servletRequest, TusServletResponse servletResponse, UploadStorageService uploadStorageService, String ownerKey) void
CreationPatchRequestHandler.process
(HttpMethod method, TusServletRequest servletRequest, TusServletResponse servletResponse, UploadStorageService uploadStorageService, String ownerKey) void
CreationPostRequestHandler.process
(HttpMethod method, TusServletRequest servletRequest, TusServletResponse servletResponse, UploadStorageService uploadStorageService, String ownerKey) boolean
CreationHeadRequestHandler.supports
(HttpMethod method) boolean
CreationPatchRequestHandler.supports
(HttpMethod method) boolean
CreationPostRequestHandler.supports
(HttpMethod method) -
Uses of HttpMethod in me.desair.tus.server.creation.validation
Modifier and TypeMethodDescriptionboolean
PostEmptyRequestValidator.supports
(HttpMethod method) boolean
PostUriValidator.supports
(HttpMethod method) boolean
UploadDeferLengthValidator.supports
(HttpMethod method) boolean
UploadLengthValidator.supports
(HttpMethod method) void
PostEmptyRequestValidator.validate
(HttpMethod method, jakarta.servlet.http.HttpServletRequest request, UploadStorageService uploadStorageService, String ownerKey) void
PostUriValidator.validate
(HttpMethod method, jakarta.servlet.http.HttpServletRequest request, UploadStorageService uploadStorageService, String ownerKey) void
UploadDeferLengthValidator.validate
(HttpMethod method, jakarta.servlet.http.HttpServletRequest request, UploadStorageService uploadStorageService, String ownerKey) void
UploadLengthValidator.validate
(HttpMethod method, jakarta.servlet.http.HttpServletRequest request, UploadStorageService uploadStorageService, String ownerKey) -
Uses of HttpMethod in me.desair.tus.server.download
Modifier and TypeMethodDescriptionvoid
DownloadGetRequestHandler.process
(HttpMethod method, TusServletRequest servletRequest, TusServletResponse servletResponse, UploadStorageService uploadStorageService, String ownerKey) boolean
DownloadGetRequestHandler.supports
(HttpMethod method) -
Uses of HttpMethod in me.desair.tus.server.expiration
Modifier and TypeMethodDescriptionvoid
ExpirationRequestHandler.process
(HttpMethod method, TusServletRequest servletRequest, TusServletResponse servletResponse, UploadStorageService uploadStorageService, String ownerKey) boolean
ExpirationRequestHandler.supports
(HttpMethod method) -
Uses of HttpMethod in me.desair.tus.server.termination
Modifier and TypeMethodDescriptionvoid
TerminationDeleteRequestHandler.process
(HttpMethod method, TusServletRequest servletRequest, TusServletResponse servletResponse, UploadStorageService uploadStorageService, String ownerKey) boolean
TerminationDeleteRequestHandler.supports
(HttpMethod method) -
Uses of HttpMethod in me.desair.tus.server.util
Modifier and TypeMethodDescriptionvoid
AbstractTusExtension.handleError
(HttpMethod method, TusServletRequest request, TusServletResponse response, UploadStorageService uploadStorageService, String ownerKey) void
AbstractExtensionRequestHandler.process
(HttpMethod method, TusServletRequest servletRequest, TusServletResponse servletResponse, UploadStorageService uploadStorageService, String ownerKey) void
AbstractTusExtension.process
(HttpMethod method, TusServletRequest servletRequest, TusServletResponse servletResponse, UploadStorageService uploadStorageService, String ownerKey) boolean
AbstractExtensionRequestHandler.supports
(HttpMethod method) void
AbstractTusExtension.validate
(HttpMethod method, jakarta.servlet.http.HttpServletRequest servletRequest, UploadStorageService uploadStorageService, String ownerKey)