/* * Portions Copyright 2000-2009 Sun Microsystems, Inc. All Rights * Reserved. Use is subject to license terms. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License version * 2 only, as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License version 2 for more details (a copy is * included at /legal/license.txt). * * You should have received a copy of the GNU General Public License * version 2 along with this work; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa * Clara, CA 95054 or visit www.sun.com if you need additional * information or have any questions. */ package gov.nist.siplite.header; /** * Header names that are supported by this parser. These are the canonical * names for the headers. */ public interface HeaderNames { /** * Constant ERROR_INFO field. */ public static final String ERROR_INFO = "Error-Info"; /** * Constant MIME_VERSION field. */ public static final String MIME_VERSION = "Mime-Version"; /** * Constant IN_REPLY_TO field. */ public static final String IN_REPLY_TO = "In-Reply-To"; /** * Constant ALLOW field. */ public static final String ALLOW = "Allow"; /** * Constant CONTENT_LANGUAGE field. */ public static final String CONTENT_LANGUAGE = "Content-Language"; /** * Constant CALL_INFO field. */ public static final String CALL_INFO = "Call-Info"; /** * Constant CSEQ field. */ public static final String CSEQ = "CSeq"; /** * Constant ALERT_INFO field. */ public static final String ALERT_INFO = "Alert-Info"; /** * Constant ACCEPT_ENCODING field. */ public static final String ACCEPT_ENCODING = "Accept-Encoding"; /** * Constant ACCEPT field. */ public static final String ACCEPT = "Accept"; /** * Constant ENCRYPTION field. */ public static final String ENCRYPTION = "Encryption"; /** * Constant ACCEPT_LANGUAGE field. */ public static final String ACCEPT_LANGUAGE = "Accept-Language"; /** * Constant RECORD_ROUTE field. */ public static final String RECORD_ROUTE = "Record-Route"; /** * Constant TIMESTAMP field. */ public static final String TIMESTAMP = "Timestamp"; /** * Constant TO field. */ public static final String TO = "To"; /** * Constant VIA field. */ public static final String VIA = "Via"; /** * Constant FROM field. */ public static final String FROM = "From"; /** * Constant CALL_ID field. */ public static final String CALL_ID = "Call-Id"; /** * Constant AUTHORIZATION field. */ public static final String AUTHORIZATION = "Authorization"; /** * Constant PROXY_AUTHENTICATE field. */ public static final String PROXY_AUTHENTICATE = "Proxy-Authenticate"; /** * Constant SERVER field. */ public static final String SERVER = "Server"; /** * Constant UNSUPPORTED field. */ public static final String UNSUPPORTED = "Unsupported"; /** * Constant RETRY_AFTER field. */ public static final String RETRY_AFTER = "Retry-After"; /** * Constant CONTENT_TYP field. */ public static final String CONTENT_TYPE = "Content-Type"; /** * Constant CONTENT_ENCODING field. */ public static final String CONTENT_ENCODING = "Content-Encoding"; /** * Constant CONTENT_LENGTH field. */ public static final String CONTENT_LENGTH = "Content-Length"; /** * Constant HIDE field. */ public static final String HIDE = "Hide"; /** * Constant ROUTE field. */ public static final String ROUTE = "Route"; /** * Constant CONTACT field. */ public static final String CONTACT = "Contact"; /** * Constant WWW_AUTHENTICATE field. */ public static final String WWW_AUTHENTICATE = "WWW-Authenticate"; /** * Constant MAX_FORWARDS field. */ public static final String MAX_FORWARDS = "Max-Forwards"; /** * Constant ORGANIZATION field. */ public static final String ORGANIZATION = "Organization"; /** * Constant PROXY_AUTHORIZATION field. */ public static final String PROXY_AUTHORIZATION = "Proxy-Authorization"; /** * Constant PROXY_REQUIRE field. */ public static final String PROXY_REQUIRE = "Proxy-Require"; /** * Constant REQUIRE field. */ public static final String REQUIRE = "Require"; /** * Constant CONTENT_DISPOSITION field. */ public static final String CONTENT_DISPOSITION = "Content-Disposition"; /** * Constant SUBJECT field. */ public static final String SUBJECT = "Subject"; /** * Constant USER_AGENT field. */ public static final String USER_AGENT = "User-Agent"; /** * Constant WARNING field. */ public static final String WARNING = "Warning"; /** * Constant PRIORITY field. */ public static final String PRIORITY = "Priority"; /** * Constant DATE field. */ public static final String DATE = "Date"; /** * Constant EXPIRES field. */ public static final String EXPIRES = "Expires"; /** * Constant RESPONSE_KEY field. */ public static final String RESPONSE_KEY = "Response-Key"; /** * Constant WARN_AGENT field. */ public static final String WARN_AGENT = "Warn-Agent"; /** * Constant SUPPORTED field. */ public static final String SUPPORTED = "Supported"; /** Constant EVENT field. */ public static final String EVENT = "Event"; }