InterprocessMessages.java revision 9995:6f3559938123
167760Smsmith/*
269459Smsmith * Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
367760Smsmith * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
467760Smsmith *
567760Smsmith * This code is free software; you can redistribute it and/or modify it
667760Smsmith * under the terms of the GNU General Public License version 2 only, as
767760Smsmith * published by the Free Software Foundation.
867760Smsmith *
967760Smsmith * This code is distributed in the hope that it will be useful, but WITHOUT
1067760Smsmith * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1167760Smsmith * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1267760Smsmith * version 2 for more details (a copy is included in the LICENSE file that
1367760Smsmith * accompanied this code).
1467760Smsmith *
1567760Smsmith * You should have received a copy of the GNU General Public License version
1667760Smsmith * 2 along with this work; if not, write to the Free Software Foundation,
1767760Smsmith * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1867760Smsmith *
1967760Smsmith * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2067760Smsmith * or visit www.oracle.com if you need additional information or have any
2167760Smsmith * questions.
2267760Smsmith */
2367760Smsmith
2467760Smsmithpublic interface InterprocessMessages {
2567760Smsmith    final static int TEST_PASSED = 0;
2667760Smsmith    final static int DATA_WAS_INTERCEPTED = 212;
2767760Smsmith    final static int EXCEPTION_HANDLER_WAS_NOT_TRIGGERED = 213;
2867760Smsmith    final static int DATA_WAS_INTERCEPTED_AND_EXCEPTION_HANDLER_WAS_NOT_TRIGGERED  = 214;
2967760Smsmith
3067760Smsmith    final static int UNEXPECTED_IO_EXCEPTION = 400;
3167760Smsmith    final static int UNEXPECTED_UNSUPPORTED_FLAVOR_EXCEPTION = 401;
3267760Smsmith}
33148318Snjl