1. /*
  2. * @(#)SUNVMCID.java 1.12 03/12/19
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package com.sun.corba.se.impl.util;
  8. /**
  9. * The vendor minor code ID reserved for Sun by the OMG.
  10. * All VMCIDs occupy the high order 20 bits.
  11. */
  12. public interface SUNVMCID {
  13. /**
  14. * The vendor minor code ID reserved for Sun. This value is or'd with
  15. * the high order 20 bits of the minor code to produce the minor value
  16. * in a system exception.
  17. */
  18. static final int value = 0x53550000;
  19. }