1/*
2 * JBoss, Home of Professional Open Source
3 * This code has been contributed to the public domain by the author.
4 *
5 * This software is provided by NIST as a service and is expressly
6 * provided "AS IS."  NIST MAKES NO WARRANTY OF ANY KIND, EXPRESS, IMPLIED
7 * OR STATUTORY, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTY OF
8 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT
9 * AND DATA ACCURACY.  NIST does not warrant or make any representations
10 * regarding the use of the software or the results thereof, including but
11 * not limited to the correctness, accuracy, reliability or usefulness of
12 * the software.
13 *
14 * Permission to use this software is contingent upon your acceptance
15 * of the terms of this agreement.
16 */
17package gov.nist.javax.sip.header;
18
19import javax.sip.header.Header;
20
21/**
22 * Extensions to the Header interface supported by the implementation and
23 * will be included in the next spec release.
24 *
25 * @author jean.deruelle@gmail.com
26 *
27 */
28public interface HeaderExt extends  Header {
29
30    /**
31     * Gets the header value (i.e. what follows the name:) as a string
32     * @return the header value (i.e. what follows the name:)
33     * @since 2.0
34     */
35    public String getValue();
36}
37