Package org.nutz.mock.servlet.multipart.item

Examples of org.nutz.mock.servlet.multipart.item.ParamMultipartItem


    FileMultipartItem fmi = new FileMultipartItem(helper, boundary, name, f, contentType);
    append(fmi);
  }

  public void append(String name, String value) {
    append(new ParamMultipartItem(helper, boundary, name, value));
  }
View Full Code Here


        FileMultipartItem fmi = new FileMultipartItem(helper, boundary, name, f, contentType);
        append(fmi);
    }

    public void append(String name, String value) {
        append(new ParamMultipartItem(helper, boundary, name, value));
    }
View Full Code Here

TOP

Related Classes of org.nutz.mock.servlet.multipart.item.ParamMultipartItem

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.