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 : ReferToHeader.java
15: * Author : Phelim O'Doherty
16: *
17: * HISTORY
18: * Version Date Author Comments
19: * 1.1 15/04/2003 Phelim O'Doherty Initial version, extension header to
20: * support RFC3515
21: *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
22: */package javax.sip.header;
23:
24: /**
25: * This interface represents the ReferTo SIP header, as defined by
26: * <a href = "http://www.ietf.org/rfc/rfc3515.txt">RFC3515</a>, this header is
27: * not part of RFC3261.
28: * <p>
29: * A ReferToHeader only appears in a REFER request. It provides a URL to
30: * reference. The ReferToHeader field MAY be encrypted as part of end-to-end
31: * encryption. The resource identified by the Refer-To URI is contacted using
32: * the normal mechanisms for that URI type.
33: *
34: * @author BEA Systems, NIST
35: * @version 1.2
36: */
37: public interface ReferToHeader extends HeaderAddress, Parameters,
38: Header {
39:
40: /**
41: * Name of ReferToHeader
42: */
43: public final static String NAME = "Refer-To";
44:
45: }
|