Home | History | Annotate | Download | only in parser
      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.parser;
     27 
     28 import gov.nist.javax.sip.header.*;
     29 import java.text.ParseException;
     30 
     31 /**
     32  * Parser for authorization headers.
     33  *
     34  * @version 1.2 $Revision: 1.8 $ $Date: 2009/07/17 18:57:57 $
     35  *
     36  * @author Olivier Deruelle
     37  * @author M. Ranganathan
     38  *
     39  *
     40  */
     41 public class AuthorizationParser extends ChallengeParser {
     42 
     43     /**
     44      * Constructor
     45      * @param authorization Authorization message to parse
     46      */
     47     public AuthorizationParser(String authorization) {
     48         super(authorization);
     49     }
     50 
     51     /**
     52      * Cosntructor
     53      * @param lexer Lexer to set
     54      */
     55     protected AuthorizationParser(Lexer lexer) {
     56         super(lexer);
     57     }
     58 
     59     /**
     60      * parse the String message
     61      * @return SIPHeader (Authorization object)
     62      * @throws SIPParseException if the message does not respect the spec.
     63      */
     64     public SIPHeader parse() throws ParseException {
     65         dbg_enter("parse");
     66         try {
     67             headerName(TokenTypes.AUTHORIZATION);
     68             Authorization auth = new Authorization();
     69             super.parse(auth);
     70             return auth;
     71         } finally {
     72             dbg_leave("parse");
     73         }
     74     }
     75 
     76 
     77 }
     78 /*
     79  * $Log: AuthorizationParser.java,v $
     80  * Revision 1.8  2009/07/17 18:57:57  emcho
     81  * Converts indentation tabs to spaces so that we have a uniform indentation policy in the whole project.
     82  *
     83  * Revision 1.7  2006/07/13 09:02:22  mranga
     84  * Issue number:
     85  * Obtained from:
     86  * Submitted by:  jeroen van bemmel
     87  * Reviewed by:   mranga
     88  * Moved some changes from jain-sip-1.2 to java.net
     89  *
     90  * CVS: ----------------------------------------------------------------------
     91  * CVS: Issue number:
     92  * CVS:   If this change addresses one or more issues,
     93  * CVS:   then enter the issue number(s) here.
     94  * CVS: Obtained from:
     95  * CVS:   If this change has been taken from another system,
     96  * CVS:   then name the system in this line, otherwise delete it.
     97  * CVS: Submitted by:
     98  * CVS:   If this code has been contributed to the project by someone else; i.e.,
     99  * CVS:   they sent us a patch or a set of diffs, then include their name/email
    100  * CVS:   address here. If this is your work then delete this line.
    101  * CVS: Reviewed by:
    102  * CVS:   If we are doing pre-commit code reviews and someone else has
    103  * CVS:   reviewed your changes, include their name(s) here.
    104  * CVS:   If you have not had it reviewed then delete this line.
    105  *
    106  * Revision 1.3  2006/06/19 06:47:27  mranga
    107  * javadoc fixups
    108  *
    109  * Revision 1.2  2006/06/16 15:26:28  mranga
    110  * Added NIST disclaimer to all public domain files. Clean up some javadoc. Fixed a leak
    111  *
    112  * Revision 1.1.1.1  2005/10/04 17:12:35  mranga
    113  *
    114  * Import
    115  *
    116  *
    117  * Revision 1.5  2004/07/28 14:13:54  mranga
    118  * Submitted by:  mranga
    119  *
    120  * Move out the test code to a separate test/unit class.
    121  * Fixed some encode methods.
    122  *
    123  * Revision 1.4  2004/01/22 13:26:31  sverker
    124  * Issue number:
    125  * Obtained from:
    126  * Submitted by:  sverker
    127  * Reviewed by:   mranga
    128  *
    129  * Major reformat of code to conform with style guide. Resolved compiler and javadoc warnings. Added CVS tags.
    130  *
    131  * CVS: ----------------------------------------------------------------------
    132  * CVS: Issue number:
    133  * CVS:   If this change addresses one or more issues,
    134  * CVS:   then enter the issue number(s) here.
    135  * CVS: Obtained from:
    136  * CVS:   If this change has been taken from another system,
    137  * CVS:   then name the system in this line, otherwise delete it.
    138  * CVS: Submitted by:
    139  * CVS:   If this code has been contributed to the project by someone else; i.e.,
    140  * CVS:   they sent us a patch or a set of diffs, then include their name/email
    141  * CVS:   address here. If this is your work then delete this line.
    142  * CVS: Reviewed by:
    143  * CVS:   If we are doing pre-commit code reviews and someone else has
    144  * CVS:   reviewed your changes, include their name(s) here.
    145  * CVS:   If you have not had it reviewed then delete this line.
    146  *
    147  */
    148