Java javax.xml.soap MimeHeaders fields, constructors, methods, implement or subclass

Example usage for Java javax.xml.soap MimeHeaders fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.xml.soap MimeHeaders.

The text is from its open source code.

Constructor

MimeHeaders()
Constructs a default MimeHeaders object initialized with an empty Vector object.

Method

voidaddHeader(String name, String value)
Adds a MimeHeader object with the specified name and value to this MimeHeaders object's list of headers.
IteratorgetAllHeaders()
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.
voidsetHeader(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.