/* * Conditions Of Use * * This software was developed by employees of the National Institute of * Standards and Technology (NIST), and others. * This software is has been contributed to the public domain. * As a result, a formal license is not needed to use the software. * * This software is provided "AS IS." * NIST MAKES NO WARRANTY OF ANY KIND, EXPRESS, IMPLIED * OR STATUTORY, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTY OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT * AND DATA ACCURACY. NIST does not warrant or make any representations * regarding the use of the software or the results thereof, including but * not limited to the correctness, accuracy, reliability or usefulness of * the software. * * */ /****************************************************** * File: TagNames.java * created 06-Dec-00 8:05:39 PM by mranga * Tag names and attributes. */ package test.torture; public interface TagNames { public final static String TORTURE = "torture"; public final static String TESTCASE = "testcase"; public final static String EXPECT_EXCEPTION = "expect-exception-callback"; public final static String MESSAGE = "message"; public final static String SIP_URL = "sip-url"; public final static String DESCRIPTION = "description"; public final static String EXCEPTION_CLASS = "exception-class"; public final static String EXCEPTION_MESSAGE = "exception-message"; public final static String EXCEPTION_TEXT = "exception-text"; public final static String PARSED_OUTPUT = "parsed-output"; public final static String DIAGNOSTIC = "diagnostic"; public final static String DIAGNOSTIC_MESSAGES = "diagnostic-messages"; public final static String REASON = "reason"; public final static String STACK_TRACE = "stack-trace"; public final static String TEST_OUTPUT = "test-output"; public final static String STATUS = "status"; public final static String SIP_HEADER = "sip-header"; public final static String OUTPUT_RESULTS = "output-results"; }