Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/opencloud/slee/services/sip/registrar/RegistrarActivityContextInterface.java


1   package com.opencloud.slee.services.sip.registrar;
2   
3   import javax.slee.ActivityContextInterface;
4   
5   /**
6    * 
7    * RegistrarActivityContextInterfaceProvided by the Sbb Developer
8    * 
9    * @author F.Moggia
10   */
11  public interface RegistrarActivityContextInterface extends ActivityContextInterface{
12      /** sipAddress - User's public, well-known SIP address */
13      public String getSipAddress();
14      public void setSipAddress(String sipAddress);
15  
16      /** sipContactAddress - Physical network address registered for above sipAddress */
17      public String getSipContactAddress();
18      public void setSipContactAddress(String sipContactAddress);
19  
20      /** callId - SIP callId that was used in the REGISTER request */
21      public String getCallId();
22      public void setCallId(String callId);
23  
24      /** cSeq - SIP sequence number that was used in the REGISTER request */
25      public long getCSeq();
26      public void setCSeq(long cSeq);
27  }