Class IdExistsValidator
java.lang.Object
me.desair.tus.server.core.validation.IdExistsValidator
- All Implemented Interfaces:
RequestValidator
If the resource is not found, the Server SHOULD return either the 404 Not Found, 410 Gone or 403
Forbidden status without the Upload-Offset header.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleansupports(HttpMethod method) Test if this validator supports the given HTTP methodvoidvalidate(HttpMethod method, jakarta.servlet.http.HttpServletRequest request, UploadStorageService uploadStorageService, String ownerKey) Validate if the request should be processed
-
Constructor Details
-
IdExistsValidator
public IdExistsValidator()
-
-
Method Details
-
validate
public void validate(HttpMethod method, jakarta.servlet.http.HttpServletRequest request, UploadStorageService uploadStorageService, String ownerKey) throws TusException, IOException Description copied from interface:RequestValidatorValidate if the request should be processed- Specified by:
validatein interfaceRequestValidator- Parameters:
method- The HTTP method of this request (do not useHttpServletRequest.getMethod()!)request- TheHttpServletRequestto validateuploadStorageService- The current upload storage serviceownerKey- A key representing the owner of the upload- Throws:
TusException- When validation fails and the request should not be processedIOException
-
supports
Description copied from interface:RequestValidatorTest if this validator supports the given HTTP method- Specified by:
supportsin interfaceRequestValidator- Parameters:
method- The current HTTP method- Returns:
- true if supported, false otherwise
-