Home | History | Annotate | Download | only in ims
      1 /*
      2 * Conditions Of Use
      3 *
      4 * This software was developed by employees of the National Institute of
      5 * Standards and Technology (NIST), an agency of the Federal Government.
      6 * Pursuant to title 15 Untied States Code Section 105, works of NIST
      7 * employees are not subject to copyright protection in the United States
      8 * and are considered to be in the public domain.  As a result, a formal
      9 * license is not needed to use the software.
     10 *
     11 * This software is provided by NIST as a service and is expressly
     12 * provided "AS IS."  NIST MAKES NO WARRANTY OF ANY KIND, EXPRESS, IMPLIED
     13 * OR STATUTORY, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTY OF
     14 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT
     15 * AND DATA ACCURACY.  NIST does not warrant or make any representations
     16 * regarding the use of the software or the results thereof, including but
     17 * not limited to the correctness, accuracy, reliability or usefulness of
     18 * the software.
     19 *
     20 * Permission to use this software is contingent upon your acceptance
     21 * of the terms of this agreement
     22 *
     23 * .
     24 *
     25 */
     26 /*******************************************
     27  * PRODUCT OF PT INOVAO - EST DEPARTMENT *
     28  *******************************************/
     29 package gov.nist.javax.sip.header.ims;
     30 
     31 import gov.nist.javax.sip.address.ParameterNames;
     32 
     33 /**
     34  * @author ALEXANDRE MIGUEL SILVA SANTOS - N 10045401
     35  */
     36 public interface ParameterNamesIms extends ParameterNames {
     37 
     38     public static final String IK = "ik";
     39     public static final String CK = "ck";
     40     public static final String INTEGRITY_PROTECTED = "integrity-protected";
     41     public static final String CCF = "ccf";
     42     public static final String ECF = "ecf";
     43     public static final String ICID_VALUE = "icid-value";
     44     public static final String ICID_GENERATED_AT = "icid-generated-at";
     45     public static final String ORIG_IOI = "orig-ioi";
     46     public static final String TERM_IOI = "term-ioi";
     47 
     48     // issued by Miguel Freitas //
     49     // P-Access-Network-ID
     50     public static final String CGI_3GPP = "cgi-3gpp";
     51     public static final String UTRAN_CELL_ID_3GPP = "utran-cell-id-3gpp";
     52     public static final String DSL_LOCATION = "dsl-location";
     53     public static final String CI_3GPP2 = "ci-3gpp2";
     54     // P-Charging-Vector
     55     public static final String GGSN = "ggsn";
     56     public static final String PDP_INFO = "pdp-info";
     57     public static final String PDP_ITEM = "pdp-item";
     58     public static final String PDP_SIG = "pdp-sig";
     59     public static final String GCID = "gcid";
     60     public static final String AUTH_TOKEN = "auth-token";
     61     public static final String FLOW_ID = "flow-id";
     62     public static final String PDG = "pdg";
     63     public static final String BRAS = "bras";
     64     public static final String DSL_BEARER_INFO = "dsl-bearer-info";
     65     public static final String DSL_BEARER_ITEM = "dsl-bearer-item";
     66     public static final String DSL_BEARER_SIG = "dsl-bearer-sig";
     67 
     68     // sec-agree (Security-Server, Security-Client, Security-Verify)
     69     public static final String ALG    = "alg";
     70     public static final String EALG   = "ealg";
     71     public static final String Q      = "q";
     72     public static final String PROT   = "prot";
     73     public static final String MOD    = "mod";
     74     public static final String SPI_C  = "spi-c";
     75     public static final String SPI_S  = "spi-s";
     76     public static final String PORT_C = "port-c";
     77     public static final String PORT_S = "port-s";
     78     public static final String D_VER  = "d-ver";
     79     // end //
     80 
     81     //added by aayush.bhatnagar(Ref: RFC 5502)
     82     public static final String SESSION_CASE = "sescase";
     83     public static final String REGISTRATION_STATE = "regstate";
     84 
     85     //added by aayush.bhatnagar(Ref: draft-drage-sipping-service-identification-03)
     86     public static final String SERVICE_ID = "urn:urn-7:";
     87     public static final String SERVICE_ID_LABEL = "3gpp-service";
     88     public static final String APPLICATION_ID_LABEL = "3gpp-application";
     89 
     90 
     91 }
     92