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 * and others. 7 * Pursuant to title 15 Untied States Code Section 105, works of NIST 8 * employees are not subject to copyright protection in the United States 9 * and are considered to be in the public domain. As a result, a formal 10 * license is not needed to use the software. 11 * 12 * This software is provided by NIST as a service and is expressly 13 * provided "AS IS." NIST MAKES NO WARRANTY OF ANY KIND, EXPRESS, IMPLIED 14 * OR STATUTORY, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTY OF 15 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT 16 * AND DATA ACCURACY. NIST does not warrant or make any representations 17 * regarding the use of the software or the results thereof, including but 18 * not limited to the correctness, accuracy, reliability or usefulness of 19 * the software. 20 * 21 * Permission to use this software is contingent upon your acceptance 22 * of the terms of this agreement 23 * 24 * . 25 * 26 */ 27 /******************************************* 28 * PRODUCT OF PT INOVACAO - EST DEPARTMENT * 29 *******************************************/ 30 31 package gov.nist.javax.sip.header.ims; 32 33 import javax.sip.header.Header; 34 import javax.sip.header.HeaderAddress; 35 import javax.sip.header.Parameters; 36 37 38 /** 39 * P-Called-Party-ID header - Private Header: RFC 3455. 40 * <p>A proxy server inserts a P-Called-Party-ID header, typically in an INVITE request, 41 * en-route to its destination. The header is populated with the Request-URI received 42 * by the proxy in the request. </p> 43 * <p>Both the business SIP URI and the personal SIP URI are registered in the SIP registrar, 44 * so both URIs can receive invitations to new sessions. When the user receives an invitation 45 * to join a session, he/she should be aware of which of the several registered SIP URIs this 46 * session was sent to. </p> 47 * 48 * <pre> 49 * P-Called-Party-ID = "P-Called-Party-ID" HCOLON 50 * called-pty-id-spec 51 * called-pty-id-spec = name-addr *(SEMI cpid-param) 52 * cpid-param = generic-param 53 * </pre> 54 * 55 * @author ALEXANDRE MIGUEL SILVA SANTOS - N 10045401 56 * 57 */ 58 59 60 public interface PCalledPartyIDHeader extends HeaderAddress, Parameters, Header { 61 62 /** 63 * Name of CalledPartyIDHeader 64 */ 65 public final static String NAME = "P-Called-Party-ID"; 66 67 } 68