OMGVMCID.java revision 608:7e06bf1dcb09
118099Spst/*
218099Spst * Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
318099Spst * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
418099Spst *
529438Sache * This code is free software; you can redistribute it and/or modify it
629438Sache * under the terms of the GNU General Public License version 2 only, as
729438Sache * published by the Free Software Foundation.  Oracle designates this
829438Sache * particular file as subject to the "Classpath" exception as provided
929438Sache * by Oracle in the LICENSE file that accompanied this code.
1029438Sache *
1129438Sache * This code is distributed in the hope that it will be useful, but WITHOUT
1229438Sache * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1329438Sache * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1429438Sache * version 2 for more details (a copy is included in the LICENSE file that
1529438Sache * accompanied this code).
1629438Sache *
1729438Sache * You should have received a copy of the GNU General Public License version
1829438Sache * 2 along with this work; if not, write to the Free Software Foundation,
1929438Sache * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2029438Sache *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25
26package org.omg.CORBA;
27
28/**
29 * The vendor minor code ID reserved for OMG. Minor codes for the standard
30 * exceptions are prefaced by the VMCID assigned to OMG, defined as the
31 * constant OMGVMCID, which, like all VMCIDs, occupies the high order 20 bits.
32 */
33
34public interface OMGVMCID {
35
36    /**
37     * The vendor minor code ID reserved for OMG. This value is or'd with
38     * the high order 20 bits of the minor code to produce the minor value
39     * in a system exception.
40     */
41    static final int value = 0x4f4d0000;
42}
43