Package org.apache.wink.common.model.multipart

Examples of org.apache.wink.common.model.multipart.OutPart.addHeader()


        BufferedOutMultiPart bomp = new BufferedOutMultiPart();
        bomp.setBoundary(bounary);
        assertEquals(bomp.getBoundary(), bounary);
        OutPart op = new OutPart();

        op.addHeader("nAme", "value");
        assertEquals(op.getHeaders().getFirst("NaMe"), "value");
        op.setContentType(MediaType.TEXT_PLAIN);
        op.setBody(body);
        bomp.addPart(op);
View Full Code Here


        BufferedOutMultiPart bomp = new BufferedOutMultiPart();
        bomp.setBoundary(bounary);
        assertEquals(bomp.getBoundary(), bounary);
        OutPart op = new OutPart();

        op.addHeader("nAme", "value");
        assertEquals(op.getHeaders().getFirst("NaMe"), "value");
        if(contentType!= null)
          op.setContentType(contentType);
        op.setBody(body);
        bomp.addPart(op);
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.