1 7 8 package com.sun.corba.se.impl.orbutil; 9 10 import org.omg.CORBA.ORB ; 11 import com.sun.corba.se.impl.util.RepositoryId; 12 13 16 public interface RepositoryIdUtility 17 { 18 boolean isChunkedEncoding(int valueTag); 19 boolean isCodeBasePresent(int valueTag); 20 21 int NO_TYPE_INFO = RepositoryId.kNoTypeInfo; 25 int SINGLE_REP_TYPE_INFO = RepositoryId.kSingleRepTypeInfo; 26 int PARTIAL_LIST_TYPE_INFO = RepositoryId.kPartialListTypeInfo; 27 28 int getTypeInfo(int valueTag); 31 32 int getStandardRMIChunkedNoRepStrId(); 34 int getCodeBaseRMIChunkedNoRepStrId(); 35 int getStandardRMIChunkedId(); 36 int getCodeBaseRMIChunkedId(); 37 int getStandardRMIUnchunkedId(); 38 int getCodeBaseRMIUnchunkedId(); 39 int getStandardRMIUnchunkedNoRepStrId(); 40 int getCodeBaseRMIUnchunkedNoRepStrId(); 41 } 42 | Popular Tags |