Example usage for Java javax.xml.soap MimeHeaders fields, constructors, methods, implement or subclass
The text is from its open source code.
MimeHeaders() Constructs a default MimeHeaders object initialized with an empty Vector object. |
void | addHeader(String name, String value) Adds a MimeHeader object with the specified name and value to this MimeHeaders object's list of headers. |
Iterator | getAllHeaders() Returns all the MimeHeader s in this MimeHeaders object. |
String[] | getHeader(String name) Returns all of the values for the specified header as an array of String objects. |
void | setHeader(String name, String value) Replaces the current value of the first header entry whose name matches the given name with the given value, adding a new header if no existing header name matches. |