01: /**
02: * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
03: * Unpublished - rights reserved under the Copyright Laws of the United States.
04: * Copyright © 2003 Sun Microsystems, Inc. All rights reserved.
05: * Copyright © 2005 BEA Systems, Inc. All rights reserved.
06: *
07: * Use is subject to license terms.
08: *
09: * This distribution may include materials developed by third parties.
10: *
11: * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
12: *
13: * Module Name : JSIP Specification
14: * File Name : SupportedHeader.java
15: * Author : Phelim O'Doherty
16: *
17: * HISTORY
18: * Version Date Author Comments
19: * 1.1 08/10/2002 Phelim O'Doherty Initial Version
20: *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
21: */package javax.sip.header;
22:
23: /**
24:
25: * The Supported header field enumerates all the extensions supported by
26:
27: * the UAC or UAS. The Supported header field contains a list of option tags,
28:
29: * that are understood by the UAC or UAS. A User Agent compliant to this specification
30:
31: * MUST only include option tags corresponding to standards-track RFCs. If
32:
33: * empty, it means that no extensions are supported.
34:
35: * <p>
36:
37: * For Example:<br>
38:
39: * <code>Supported: 100rel</code>
40:
41: *
42:
43: * @see OptionTag
44:
45: * @see UnsupportedHeader
46: * @author BEA Systems, NIST
47: * @version 1.2
48:
49: */
50:
51: public interface SupportedHeader extends OptionTag, Header {
52:
53: /**
54:
55: * Name of SupportedHeader
56:
57: */
58:
59: public final static String NAME = "Supported";
60:
61: }
|