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