190dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)/*
290dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)* Conditions Of Use
390dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)*
490dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)* This software was developed by employees of the National Institute of
590dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)* Standards and Technology (NIST), an agency of the Federal Government.
690dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)* Pursuant to title 15 Untied States Code Section 105, works of NIST
790dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)* employees are not subject to copyright protection in the United States
890dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)* and are considered to be in the public domain.  As a result, a formal
990dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)* license is not needed to use the software.
1090dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)*
1190dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)* This software is provided by NIST as a service and is expressly
1290dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)* provided "AS IS."  NIST MAKES NO WARRANTY OF ANY KIND, EXPRESS, IMPLIED
1390dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)* OR STATUTORY, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTY OF
1490dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT
15eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch* AND DATA ACCURACY.  NIST does not warrant or make any representations
1690dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)* regarding the use of the software or the results thereof, including but
1790dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)* not limited to the correctness, accuracy, reliability or usefulness of
1890dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)* the software.
19eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch*
20eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch* Permission to use this software is contingent upon your acceptance
2158537e28ecd584eab876aee8be7156509866d23aTorne (Richard Coles)* of the terms of this agreement
2290dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)*
233551c9c881056c480085172ff9840cab31610854Torne (Richard Coles)* .
245d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)*
2590dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)*/
2690dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)/*******************************************************************************
27116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch* Product of NIST/ITL Advanced Networking Technologies Division (ANTD).        *
2890dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)*******************************************************************************/
2990dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)package gov.nist.javax.sip.header;
3090dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)
3190dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)import javax.sip.header.*;
32eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch
3390dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)/**
3490dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles) * A list of Warning headers.
3590dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles) *
3658537e28ecd584eab876aee8be7156509866d23aTorne (Richard Coles) * @version 1.2 $Revision: 1.6 $ $Date: 2009/07/17 18:57:41 $
3758537e28ecd584eab876aee8be7156509866d23aTorne (Richard Coles) *
3890dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles) * @author M. Ranganathan   <br/>
394e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles) *
404e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles) *
4158537e28ecd584eab876aee8be7156509866d23aTorne (Richard Coles) *
4258537e28ecd584eab876aee8be7156509866d23aTorne (Richard Coles) */
43a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)public class WarningList extends SIPHeaderList<Warning> {
44f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)
45f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)    /**
4690dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)     * Comment for <code>serialVersionUID</code>
4790dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)     */
4890dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    private static final long serialVersionUID = -1423278728898430175L;
49868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)
5090dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    public Object clone() {
51d0247b1b59f9c528cb6df88b4f2b9afaf80d181eTorne (Richard Coles)        WarningList retval = new WarningList();
5223730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)        return retval.clonehlist(this.hlist);
5390dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    }
54a36e5920737c6adbddd3e43b760e5de8431db6e0Torne (Richard Coles)    /**
5590dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)     * Constructor.
5690dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)     */
5790dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    public WarningList() {
5890dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)        super(Warning.class, Warning.NAME);
5990dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)    }
6090dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)}
6190dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)