Package com.sun.jersey.core.header.FormDataContentDisposition

Examples of com.sun.jersey.core.header.FormDataContentDisposition.FormDataContentDispositionBuilder


   * filename (or the default one if unspecified).
   *
   * @return ready to use content-disposition header
   */
  protected FormDataContentDisposition buildContentDisposition() {
    FormDataContentDispositionBuilder builder = FormDataContentDisposition
        .name(getName());

    if (filename != null) {
      builder.fileName(filename);
    } else {
      // Default is to set the name of the file as a form-field name.
      builder.fileName(getName());
    }

    return builder.build();
  }
View Full Code Here

TOP

Related Classes of com.sun.jersey.core.header.FormDataContentDisposition.FormDataContentDispositionBuilder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.