All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.desair.tus.server.creation.CreationOptionsRequestHandler Maven / Gradle / Ivy

package me.desair.tus.server.creation;

import me.desair.tus.server.util.AbstractExtensionRequestHandler;

/**
 * The Client and the Server SHOULD implement the upload creation extension.
 * If the Server supports this extension, it MUST add creation to the Tus-Extension header.
 * 

* If the Server supports deferring length, it MUST add creation-defer-length to the Tus-Extension header. */ public class CreationOptionsRequestHandler extends AbstractExtensionRequestHandler { @Override protected void appendExtensions(StringBuilder extensionBuilder) { addExtension(extensionBuilder, "creation"); addExtension(extensionBuilder, "creation-defer-length"); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy