• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package gov.nist.javax.sip.header.extensions;
2 
3 
4 import java.text.ParseException;
5 
6 import javax.sip.header.Header;
7 import javax.sip.header.Parameters;
8 
9 /**
10  * References header: See http://tools.ietf.org/html/draft-worley-references-05
11  */
12 public interface ReferencesHeader extends Parameters, Header {
13 
14     public static final String NAME = "References";
15 
16     public static final String CHAIN = "chain";
17 
18     public static final String INQUIRY =  "inquiry";
19 
20     public static final String REFER = "refer" ;
21 
22     public static final String SEQUEL = "sequel";
23 
24     public static final String XFER =  "xfer";
25 
26     public static final String REL = "rel";
27 
28     public static final String SERVICE = "service";
29 
setCallId(String callId)30     public void setCallId(String callId) throws ParseException;
31 
getCallId()32     public String getCallId();
33 
setRel(String rel)34     public void setRel (String rel) throws ParseException;
35 
getRel()36     public String getRel();
37 
38 
39 }
40