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

Examples of com.sun.jersey.core.header.FormDataContentDisposition.FormDataContentDispositionBuilder.fileName()


  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());
    }
View Full Code Here


    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
Copyright © 2018 www.massapi.com. 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.