Class HttpRFC6532Multipart

    • Constructor Detail

      • HttpRFC6532Multipart

        public HttpRFC6532Multipart​(java.nio.charset.Charset charset,
                                    java.lang.String boundary,
                                    java.util.List<MultipartPart> parts,
                                    java.lang.String preamble,
                                    java.lang.String epilogue)
        Constructs a new instance of HttpRFC6532Multipart.
        Parameters:
        charset - The charset to use for the message.
        boundary - The boundary string to use for the message.
        parts - The list of parts that make up the message.
        preamble - The preamble to include at the beginning of the message, or null if none.
        epilogue - The epilogue to include at the end of the message, or null if none.
      • HttpRFC6532Multipart

        public HttpRFC6532Multipart​(java.nio.charset.Charset charset,
                                    java.lang.String boundary,
                                    java.util.List<MultipartPart> parts)
        Constructs a new instance of HttpRFC6532Multipart with the given charset, boundary, and parts.
        Parameters:
        charset - the charset to use.
        boundary - the boundary string to use.
        parts - the list of parts to include in the multipart message.