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 package gov.nist.javax.sip.address; 27 28 /** 29 * Common parameter names. 30 * 31 * @version 1.2 $Revision: 1.6 $ $Date: 2009/07/17 18:57:22 $ 32 * 33 * @author M. Ranganathan <br/> 34 * 35 * 36 */ 37 public interface ParameterNames { 38 public static final String SIP_URI_SCHEME = "sip"; 39 public static final String SIPS_URI_SCHEME = "sips"; 40 public static final String TEL_URI_SCHEME = "tel"; 41 public static final String POSTDIAL = "postdial"; 42 public static final String PHONE_CONTEXT_TAG = "context-tag"; 43 public static final String ISUB = "isub"; 44 public static final String PROVIDER_TAG = "provider-tag"; 45 public static final String UDP = GenericURI.UDP; 46 public static final String TCP = GenericURI.TCP; 47 public static final String TLS = GenericURI.TLS; 48 } 49 /* 50 * $Log: ParameterNames.java,v $ 51 * Revision 1.6 2009/07/17 18:57:22 emcho 52 * Converts indentation tabs to spaces so that we have a uniform indentation policy in the whole project. 53 * 54 * Revision 1.5 2006/07/13 09:02:30 mranga 55 * Issue number: 56 * Obtained from: 57 * Submitted by: jeroen van bemmel 58 * Reviewed by: mranga 59 * Moved some changes from jain-sip-1.2 to java.net 60 * 61 * CVS: ---------------------------------------------------------------------- 62 * CVS: Issue number: 63 * CVS: If this change addresses one or more issues, 64 * CVS: then enter the issue number(s) here. 65 * CVS: Obtained from: 66 * CVS: If this change has been taken from another system, 67 * CVS: then name the system in this line, otherwise delete it. 68 * CVS: Submitted by: 69 * CVS: If this code has been contributed to the project by someone else; i.e., 70 * CVS: they sent us a patch or a set of diffs, then include their name/email 71 * CVS: address here. If this is your work then delete this line. 72 * CVS: Reviewed by: 73 * CVS: If we are doing pre-commit code reviews and someone else has 74 * CVS: reviewed your changes, include their name(s) here. 75 * CVS: If you have not had it reviewed then delete this line. 76 * 77 * Revision 1.3 2006/06/19 06:47:26 mranga 78 * javadoc fixups 79 * 80 * Revision 1.2 2006/06/16 15:26:29 mranga 81 * Added NIST disclaimer to all public domain files. Clean up some javadoc. Fixed a leak 82 * 83 * Revision 1.1.1.1 2005/10/04 17:12:34 mranga 84 * 85 * Import 86 * 87 * 88 * Revision 1.3 2004/10/28 19:02:49 mranga 89 * Submitted by: Daniel Martinez 90 * Reviewed by: M. Ranganathan 91 * 92 * Added changes for TLS support contributed by Daniel Martinez 93 * 94 * Revision 1.2 2004/01/22 13:26:28 sverker 95 * Issue number: 96 * Obtained from: 97 * Submitted by: sverker 98 * Reviewed by: mranga 99 * 100 * Major reformat of code to conform with style guide. Resolved compiler and javadoc warnings. Added CVS tags. 101 * 102 * CVS: ---------------------------------------------------------------------- 103 * CVS: Issue number: 104 * CVS: If this change addresses one or more issues, 105 * CVS: then enter the issue number(s) here. 106 * CVS: Obtained from: 107 * CVS: If this change has been taken from another system, 108 * CVS: then name the system in this line, otherwise delete it. 109 * CVS: Submitted by: 110 * CVS: If this code has been contributed to the project by someone else; i.e., 111 * CVS: they sent us a patch or a set of diffs, then include their name/email 112 * CVS: address here. If this is your work then delete this line. 113 * CVS: Reviewed by: 114 * CVS: If we are doing pre-commit code reviews and someone else has 115 * CVS: reviewed your changes, include their name(s) here. 116 * CVS: If you have not had it reviewed then delete this line. 117 * 118 */ 119