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

io.vertx.rxjava.ext.web.FileUpload Maven / Gradle / Ivy

There is a newer version: 4.5.10
Show newest version
/*
 * Copyright 2014 Red Hat, Inc.
 *
 * Red Hat licenses this file to you under the Apache License, version 2.0
 * (the "License"); you may not use this file except in compliance with the
 * License.  You may obtain a copy of the License at:
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
 * License for the specific language governing permissions and limitations
 * under the License.
 */

package io.vertx.rxjava.ext.web;

import java.util.Map;
import io.vertx.lang.rxjava.InternalHelper;
import rx.Observable;

/**
 * Represents a file-upload from an HTTP multipart form submission.
 * 

* *

* NOTE: This class has been automatically generated from the {@link io.vertx.ext.web.FileUpload original} non RX-ified interface using Vert.x codegen. */ public class FileUpload { final io.vertx.ext.web.FileUpload delegate; public FileUpload(io.vertx.ext.web.FileUpload delegate) { this.delegate = delegate; } public Object getDelegate() { return delegate; } /** * @return the name of the upload as provided in the form submission * @return */ public String name() { String ret = this.delegate.name(); return ret; } /** * @return the actual temporary file name on the server where the file was uploaded to. * @return */ public String uploadedFileName() { String ret = this.delegate.uploadedFileName(); return ret; } /** * @return the file name of the upload as provided in the form submission * @return */ public String fileName() { String ret = this.delegate.fileName(); return ret; } /** * @return the size of the upload, in bytes * @return */ public long size() { long ret = this.delegate.size(); return ret; } /** * @return the content type (MIME type) of the upload * @return */ public String contentType() { String ret = this.delegate.contentType(); return ret; } /** * @return the content transfer encoding of the upload - this describes how the upload was encoded in the form submission. * @return */ public String contentTransferEncoding() { String ret = this.delegate.contentTransferEncoding(); return ret; } /** * @return the charset of the upload * @return */ public String charSet() { String ret = this.delegate.charSet(); return ret; } public static FileUpload newInstance(io.vertx.ext.web.FileUpload arg) { return arg != null ? new FileUpload(arg) : null; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy