OMGVMCID.java revision 608:7e06bf1dcb09
1221828Sgrehan/*
2221828Sgrehan * Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
3221828Sgrehan * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4221828Sgrehan *
5221828Sgrehan * This code is free software; you can redistribute it and/or modify it
6221828Sgrehan * under the terms of the GNU General Public License version 2 only, as
7221828Sgrehan * published by the Free Software Foundation.  Oracle designates this
8221828Sgrehan * particular file as subject to the "Classpath" exception as provided
9221828Sgrehan * by Oracle in the LICENSE file that accompanied this code.
10221828Sgrehan *
11221828Sgrehan * This code is distributed in the hope that it will be useful, but WITHOUT
12221828Sgrehan * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13221828Sgrehan * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14221828Sgrehan * version 2 for more details (a copy is included in the LICENSE file that
15221828Sgrehan * accompanied this code).
16221828Sgrehan *
17221828Sgrehan * You should have received a copy of the GNU General Public License version
18221828Sgrehan * 2 along with this work; if not, write to the Free Software Foundation,
19221828Sgrehan * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20221828Sgrehan *
21221828Sgrehan * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22221828Sgrehan * or visit www.oracle.com if you need additional information or have any
23221828Sgrehan * questions.
24221828Sgrehan */
25221828Sgrehan
26221828Sgrehanpackage org.omg.CORBA;
27221828Sgrehan
28221828Sgrehan/**
29221828Sgrehan * The vendor minor code ID reserved for OMG. Minor codes for the standard
30221828Sgrehan * exceptions are prefaced by the VMCID assigned to OMG, defined as the
31221828Sgrehan * constant OMGVMCID, which, like all VMCIDs, occupies the high order 20 bits.
32221828Sgrehan */
33221828Sgrehan
34223621Sgrehanpublic interface OMGVMCID {
35221828Sgrehan
36221828Sgrehan    /**
37221828Sgrehan     * The vendor minor code ID reserved for OMG. This value is or'd with
38221828Sgrehan     * the high order 20 bits of the minor code to produce the minor value
39221828Sgrehan     * in a system exception.
40221828Sgrehan     */
41221828Sgrehan    static final int value = 0x4f4d0000;
42221828Sgrehan}
43221828Sgrehan