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 : ReplyToHeader.java
15: * Author : Phelim O'Doherty
16: *
17: * HISTORY
18: * Version Date Author Comments
19: * 1.1 08/10/2002 Phelim O'Doherty
20: *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
21: */package javax.sip.header;
22:
23: /**
24:
25: * The Reply-To header field contains a logical return URI that may be
26:
27: * different from the From header field. For example, the URI MAY be used to
28:
29: * return missed calls or unestablished sessions. If the user wished to remain
30:
31: * anonymous, the header field SHOULD either be omitted from the request or
32:
33: * populated in such a way that does not reveal any private information.
34:
35: * <p>
36:
37: * For Example:<br>
38:
39: * <code>Reply-To: Bob sip:bob@biloxi.com</code>
40:
41: *
42:
43: * @see HeaderAddress
44:
45: * @see Parameters
46:
47: *
48: * @author BEA Systems, NIST
49: * @version 1.2
50:
51: *
52:
53: */
54:
55: public interface ReplyToHeader extends HeaderAddress, Parameters,
56: Header {
57:
58: /**
59:
60: * Name of ReplyToHeader
61:
62: */
63:
64: public final static String NAME = "Reply-To";
65:
66: }
|