Home | History | Annotate | Download | only in internet

Lines Matching defs:boundary

32   protected String boundary;
37 boundary = generateBoundary();
45 boundary = MimeUtility.getHeaderParameter(contentType, "boundary");
46 if (boundary == null) {
47 throw new MessagingException("MultiPart does not contain boundary: " + contentType);
51 "Invalid MultiPart Content-Type; must contain subtype and boundary. ("
82 contentType = String.format("multipart/%s; boundary=\"%s\"", subType, boundary);
95 writer.write("--" + boundary + "\r\n");
101 writer.write("--" + boundary + "--\r\n");