/*
* @(#)NamingConstants.java 1.6 05/01/04
*
* Copyright 2005 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
package com.sun.corba.se.impl.naming.namingutil;
/**
* Constants specific to INS parsing and validation.
*/
public class NamingConstants {
// iiop length
public static final int IIOP_LENGTH = 4;
// rir: length
public static final int RIRCOLON_LENGTH = 4;
public static final int MAJORNUMBER_SUPPORTED = 1;
public static final int MINORNUMBERMAX = 2;
}
|