- java.lang.Object
- 
- javax.xml.soap.MimeHeaders
 
- 
 
 public class MimeHeaders extends Object A container forMimeHeaderobjects, which represent the MIME headers present in a MIME part of a message.This class is used primarily when an application wants to retrieve specific attachments based on certain MIME headers and values. This class will most likely be used by implementations of AttachmentPartand other MIME dependent parts of the SAAJ API.- Since:
- 1.6
- See Also:
- SOAPMessage.getAttachments(),- AttachmentPart
 
- 
- 
Constructor SummaryConstructors Constructor Description MimeHeaders()Constructs a defaultMimeHeadersobject initialized with an emptyVectorobject.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddHeader(String name, String value)Adds aMimeHeaderobject with the specified name and value to thisMimeHeadersobject's list of headers.Iterator<MimeHeader>getAllHeaders()Returns all theMimeHeaders in thisMimeHeadersobject.String[]getHeader(String name)Returns all of the values for the specified header as an array ofStringobjects.Iterator<MimeHeader>getMatchingHeaders(String[] names)Returns all theMimeHeaderobjects whose name matches a name in the given array of names.Iterator<MimeHeader>getNonMatchingHeaders(String[] names)Returns all of theMimeHeaderobjects whose name does not match a name in the given array of names.voidremoveAllHeaders()Removes all the header entries from thisMimeHeadersobject.voidremoveHeader(String name)Remove allMimeHeaderobjects whose name matches the given name.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.
 
- 
- 
- 
Method Detail- 
getHeaderpublic String[] getHeader(String name) Returns all of the values for the specified header as an array ofStringobjects.- Parameters:
- name- the name of the header for which values will be returned
- Returns:
- a Stringarray with all of the values for the specified header
- See Also:
- setHeader(java.lang.String, java.lang.String)
 
 - 
setHeaderpublic 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. This method also removes all matching headers after the first one.Note that RFC822 headers can contain only US-ASCII characters. - Parameters:
- name- a- Stringwith the name of the header for which to search
- value- a- Stringwith the value that will replace the current value of the specified header
- Throws:
- IllegalArgumentException- if there was a problem in the mime header name or the value being set
- See Also:
- getHeader(java.lang.String)
 
 - 
addHeaderpublic void addHeader(String name, String value) Adds aMimeHeaderobject with the specified name and value to thisMimeHeadersobject's list of headers.Note that RFC822 headers can contain only US-ASCII characters. - Parameters:
- name- a- Stringwith the name of the header to be added
- value- a- Stringwith the value of the header to be added
- Throws:
- IllegalArgumentException- if there was a problem in the mime header name or value being added
 
 - 
removeHeaderpublic void removeHeader(String name) Remove allMimeHeaderobjects whose name matches the given name.- Parameters:
- name- a- Stringwith the name of the header for which to search
 
 - 
removeAllHeaderspublic void removeAllHeaders() Removes all the header entries from thisMimeHeadersobject.
 - 
getAllHeaderspublic Iterator<MimeHeader> getAllHeaders() Returns all theMimeHeaders in thisMimeHeadersobject.- Returns:
- an Iteratorobject over thisMimeHeadersobject's list ofMimeHeaderobjects
 
 - 
getMatchingHeaderspublic Iterator<MimeHeader> getMatchingHeaders(String[] names) Returns all theMimeHeaderobjects whose name matches a name in the given array of names.- Parameters:
- names- an array of- Stringobjects with the names for which to search
- Returns:
- an Iteratorobject over theMimeHeaderobjects whose name matches one of the names in the given list
 
 - 
getNonMatchingHeaderspublic Iterator<MimeHeader> getNonMatchingHeaders(String[] names) Returns all of theMimeHeaderobjects whose name does not match a name in the given array of names.- Parameters:
- names- an array of- Stringobjects with the names for which to search
- Returns:
- an Iteratorobject over theMimeHeaderobjects whose name does not match one of the names in the given list
 
 
- 
 
-