src/share/jaxws_classes/javax/xml/soap/MimeHeader.java

Print this page
rev 507 : 8047724: @since tag cleanup in jaxws
Reviewed-by:


  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package javax.xml.soap;
  27 
  28 
  29 /**
  30  * An object that stores a MIME header name and its value. One or more
  31  * <code>MimeHeader</code> objects may be contained in a <code>MimeHeaders</code>
  32  * object.
  33  *
  34  * @see MimeHeaders

  35  */
  36 public class MimeHeader {
  37 
  38    private String name;
  39    private String value;
  40 
  41    /**
  42     * Constructs a <code>MimeHeader</code> object initialized with the given
  43     * name and value.
  44     *
  45     * @param name a <code>String</code> giving the name of the header
  46     * @param value a <code>String</code> giving the value of the header
  47     */
  48     public MimeHeader(String name, String value) {
  49         this.name = name;
  50         this.value = value;
  51     }
  52 
  53     /**
  54      * Returns the name of this <code>MimeHeader</code> object.


  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package javax.xml.soap;
  27 
  28 
  29 /**
  30  * An object that stores a MIME header name and its value. One or more
  31  * <code>MimeHeader</code> objects may be contained in a <code>MimeHeaders</code>
  32  * object.
  33  *
  34  * @see MimeHeaders
  35  * @since 1.6
  36  */
  37 public class MimeHeader {
  38 
  39    private String name;
  40    private String value;
  41 
  42    /**
  43     * Constructs a <code>MimeHeader</code> object initialized with the given
  44     * name and value.
  45     *
  46     * @param name a <code>String</code> giving the name of the header
  47     * @param value a <code>String</code> giving the value of the header
  48     */
  49     public MimeHeader(String name, String value) {
  50         this.name = name;
  51         this.value = value;
  52     }
  53 
  54     /**
  55      * Returns the name of this <code>MimeHeader</code> object.