1 /* 2 * @(#)NamingConstants.java 1.6 05/01/04 3 * 4 * Copyright 2005 Sun Microsystems, Inc. All rights reserved. 5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 */ 7 package com.sun.corba.se.impl.naming.namingutil; 8 9 /** 10 * Constants specific to INS parsing and validation. 11 */ 12 public class NamingConstants { 13 14 // iiop length 15 public static final int IIOP_LENGTH = 4; 16 17 // rir: length 18 public static final int RIRCOLON_LENGTH = 4; 19 20 public static final int MAJORNUMBER_SUPPORTED = 1; 21 22 public static final int MINORNUMBERMAX = 2; 23 } 24