1 5 package ve.luz.ica.jackass.ref; 6 7 import org.omg.IOP.IOR ; 8 import org.omg.IIOP.ProfileBody_1_1; 9 10 13 final class IORData 14 { 15 final IOR ior; final ProfileBody_1_1 profileBody; final int inetProfileIndex; 19 26 IORData(IOR ior, ProfileBody_1_1 body, int index) 27 { 28 this.ior = ior; 29 this.profileBody = body; 30 this.inetProfileIndex = index; 31 } 32 33 38 IORData(IOR ior) 39 { 40 this.ior = ior; 41 this.inetProfileIndex = -1; 42 this.profileBody = null; 43 } 44 45 50 boolean isIIOP_1_1() 51 { 52 return profileBody != null; 53 } 54 } 55 | Popular Tags |