declare namespace javax { namespace xml { namespace soap { /** * An object that stores a MIME header name and its value. One or more * MimeHeader objects may be contained in a MimeHeaders * object. * @see MimeHeaders */ // @ts-ignore class MimeHeader extends java.lang.Object { /** * Constructs a MimeHeader object initialized with the given * name and value. * @param name a String giving the name of the header * @param value a String giving the value of the header */ // @ts-ignore constructor(name: java.lang.String | string, value: java.lang.String | string) /** * Returns the name of this MimeHeader object. * @return the name of the header as a String */ // @ts-ignore public getName(): string /** * Returns the value of this MimeHeader object. * @return the value of the header as a String */ // @ts-ignore public getValue(): string } } } }