Java Code Examples for com.sun.corba.se.spi.ior.IOR
The following examples show how to use
com.sun.corba.se.spi.ior.IOR. These examples are extracted from open source projects.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source Project: openjdk-8 Source File: BootstrapResolverImpl.java License: GNU General Public License v2.0 | 6 votes |
public BootstrapResolverImpl(ORB orb, String host, int port) { wrapper = ORBUtilSystemException.get( orb, CORBALogDomains.ORB_RESOLVER ) ; // Create a new IOR with the magic of INIT byte[] initialKey = "INIT".getBytes() ; ObjectKey okey = orb.getObjectKeyFactory().create(initialKey) ; IIOPAddress addr = IIOPFactories.makeIIOPAddress( orb, host, port ) ; IIOPProfileTemplate ptemp = IIOPFactories.makeIIOPProfileTemplate( orb, GIOPVersion.V1_0, addr); IORTemplate iortemp = IORFactories.makeIORTemplate( okey.getTemplate() ) ; iortemp.add( ptemp ) ; IOR initialIOR = iortemp.makeIOR( (com.sun.corba.se.spi.orb.ORB)orb, "", okey.getId() ) ; bootstrapDelegate = ORBUtility.makeClientDelegate( initialIOR ) ; }
Example 2
Source Project: openjdk-8-source Source File: BootstrapResolverImpl.java License: GNU General Public License v2.0 | 6 votes |
public BootstrapResolverImpl(ORB orb, String host, int port) { wrapper = ORBUtilSystemException.get( orb, CORBALogDomains.ORB_RESOLVER ) ; // Create a new IOR with the magic of INIT byte[] initialKey = "INIT".getBytes() ; ObjectKey okey = orb.getObjectKeyFactory().create(initialKey) ; IIOPAddress addr = IIOPFactories.makeIIOPAddress( orb, host, port ) ; IIOPProfileTemplate ptemp = IIOPFactories.makeIIOPProfileTemplate( orb, GIOPVersion.V1_0, addr); IORTemplate iortemp = IORFactories.makeIORTemplate( okey.getTemplate() ) ; iortemp.add( ptemp ) ; IOR initialIOR = iortemp.makeIOR( (com.sun.corba.se.spi.orb.ORB)orb, "", okey.getId() ) ; bootstrapDelegate = ORBUtility.makeClientDelegate( initialIOR ) ; }
Example 3
Source Project: openjdk-jdk9 Source File: SocketFactoryContactInfoImpl.java License: GNU General Public License v2.0 | 6 votes |
public SocketFactoryContactInfoImpl( ORB orb, CorbaContactInfoList contactInfoList, IOR effectiveTargetIOR, short addressingDisposition, SocketInfo cookie) { super(orb, contactInfoList); this.effectiveTargetIOR = effectiveTargetIOR; this.addressingDisposition = addressingDisposition; wrapper = ORBUtilSystemException.get( orb, CORBALogDomains.RPC_TRANSPORT ) ; socketInfo = orb.getORBData().getLegacySocketFactory() .getEndPointInfo(orb, effectiveTargetIOR, cookie); socketType = socketInfo.getType(); hostname = socketInfo.getHost(); port = socketInfo.getPort(); }
Example 4
Source Project: openjdk-jdk8u Source File: SocketFactoryContactInfoImpl.java License: GNU General Public License v2.0 | 6 votes |
public SocketFactoryContactInfoImpl( ORB orb, CorbaContactInfoList contactInfoList, IOR effectiveTargetIOR, short addressingDisposition, SocketInfo cookie) { super(orb, contactInfoList); this.effectiveTargetIOR = effectiveTargetIOR; this.addressingDisposition = addressingDisposition; wrapper = ORBUtilSystemException.get( orb, CORBALogDomains.RPC_TRANSPORT ) ; socketInfo = orb.getORBData().getLegacySocketFactory() .getEndPointInfo(orb, effectiveTargetIOR, cookie); socketType = socketInfo.getType(); hostname = socketInfo.getHost(); port = socketInfo.getPort(); }
Example 5
Source Project: JDKSourceCode1.8 Source File: CorbaMessageMediatorImpl.java License: MIT License | 6 votes |
private byte getStreamFormatVersionForThisRequest(IOR ior, GIOPVersion giopVersion) { byte localMaxVersion = ORBUtility.getMaxStreamFormatVersion(); IOR effectiveTargetIOR = ((CorbaContactInfo)this.contactInfo).getEffectiveTargetIOR(); IIOPProfileTemplate temp = (IIOPProfileTemplate)effectiveTargetIOR.getProfile().getTaggedProfileTemplate(); Iterator iter = temp.iteratorById(TAG_RMI_CUSTOM_MAX_STREAM_FORMAT.value); if (!iter.hasNext()) { // Didn't have the max stream format version tagged // component. if (giopVersion.lessThan(GIOPVersion.V1_3)) return ORBConstants.STREAM_FORMAT_VERSION_1; else return ORBConstants.STREAM_FORMAT_VERSION_2; } byte remoteMaxVersion = ((MaxStreamFormatVersionComponent)iter.next()).getMaxStreamFormatVersion(); return (byte)Math.min(localMaxVersion, remoteMaxVersion); }
Example 6
Source Project: openjdk-8-source Source File: CorbaClientDelegateImpl.java License: GNU General Public License v2.0 | 6 votes |
/** * This method overrides the org.omg.CORBA.portable.Delegate.equals method, * and does the equality check based on IOR equality. */ public boolean equals(org.omg.CORBA.Object self, java.lang.Object other) { if (other == null) return false ; if (!StubAdapter.isStub(other)) { return false; } Delegate delegate = StubAdapter.getDelegate( other ) ; if (delegate == null) return false ; if (delegate instanceof CorbaClientDelegateImpl) { CorbaClientDelegateImpl otherDel = (CorbaClientDelegateImpl) delegate ; IOR otherIor = otherDel.contactInfoList.getTargetIOR(); return this.contactInfoList.getTargetIOR().equals(otherIor); } // Come here if other is not implemented by our ORB. return false; }
Example 7
Source Project: jdk8u60 Source File: SocketFactoryContactInfoImpl.java License: GNU General Public License v2.0 | 6 votes |
public SocketFactoryContactInfoImpl( ORB orb, CorbaContactInfoList contactInfoList, IOR effectiveTargetIOR, short addressingDisposition, SocketInfo cookie) { super(orb, contactInfoList); this.effectiveTargetIOR = effectiveTargetIOR; this.addressingDisposition = addressingDisposition; wrapper = ORBUtilSystemException.get( orb, CORBALogDomains.RPC_TRANSPORT ) ; socketInfo = orb.getORBData().getLegacySocketFactory() .getEndPointInfo(orb, effectiveTargetIOR, cookie); socketType = socketInfo.getType(); hostname = socketInfo.getHost(); port = socketInfo.getPort(); }
Example 8
Source Project: jdk8u60 Source File: LocalClientRequestDispatcherBase.java License: GNU General Public License v2.0 | 6 votes |
protected LocalClientRequestDispatcherBase(ORB orb, int scid, IOR ior) { this.orb = orb ; TaggedProfile prof = ior.getProfile() ; servantIsLocal = orb.getORBData().isLocalOptimizationAllowed() && prof.isLocal(); ObjectKeyTemplate oktemp = prof.getObjectKeyTemplate() ; this.scid = oktemp.getSubcontractId() ; RequestDispatcherRegistry sreg = orb.getRequestDispatcherRegistry() ; oaf = sreg.getObjectAdapterFactory( scid ) ; oaid = oktemp.getObjectAdapterId() ; ObjectId oid = prof.getObjectId() ; objectId = oid.getId() ; }
Example 9
Source Project: hottub Source File: CorbaMessageMediatorImpl.java License: GNU General Public License v2.0 | 6 votes |
private byte getStreamFormatVersionForThisRequest(IOR ior, GIOPVersion giopVersion) { byte localMaxVersion = ORBUtility.getMaxStreamFormatVersion(); IOR effectiveTargetIOR = ((CorbaContactInfo)this.contactInfo).getEffectiveTargetIOR(); IIOPProfileTemplate temp = (IIOPProfileTemplate)effectiveTargetIOR.getProfile().getTaggedProfileTemplate(); Iterator iter = temp.iteratorById(TAG_RMI_CUSTOM_MAX_STREAM_FORMAT.value); if (!iter.hasNext()) { // Didn't have the max stream format version tagged // component. if (giopVersion.lessThan(GIOPVersion.V1_3)) return ORBConstants.STREAM_FORMAT_VERSION_1; else return ORBConstants.STREAM_FORMAT_VERSION_2; } byte remoteMaxVersion = ((MaxStreamFormatVersionComponent)iter.next()).getMaxStreamFormatVersion(); return (byte)Math.min(localMaxVersion, remoteMaxVersion); }
Example 10
Source Project: JDKSourceCode1.8 Source File: CorbaServerRequestDispatcherImpl.java License: MIT License | 6 votes |
/** XXX/REVISIT: * We do not want to look for a servant in the POA/ServantManager case, * but we could in most other cases. The OA could have a method that * returns true if the servant MAY exist, and false only if the servant * definitely DOES NOT exist. * * XXX/REVISIT: * We may wish to indicate OBJECT_HERE by some mechanism other than * returning a null result. * * Called from ORB.locate when a LocateRequest arrives. * Result is not always absolutely correct: may indicate OBJECT_HERE * for non-existent objects, which is resolved on invocation. This * "bug" is unavoidable, since in general the object may be destroyed * between a locate and a request. Note that this only checks that * the appropriate ObjectAdapter is available, not that the servant * actually exists. * Need to signal one of OBJECT_HERE, OBJECT_FORWARD, OBJECT_NOT_EXIST. * @return Result is null if object is (possibly) implemented here, otherwise * an IOR indicating objref to forward the request to. * @exception OBJECT_NOT_EXIST is thrown if we know the object does not * exist here, and we are not forwarding. */ public IOR locate(ObjectKey okey) { try { if (orb.subcontractDebugFlag) dprint(".locate->"); ObjectKeyTemplate oktemp = okey.getTemplate() ; try { checkServerId(okey); } catch (ForwardException fex) { return fex.getIOR() ; } // Called only for its side-effect of throwing appropriate exceptions findObjectAdapter(oktemp); return null ; } finally { if (orb.subcontractDebugFlag) dprint(".locate<-"); } }
Example 11
Source Project: jdk8u60 Source File: ORBUtility.java License: GNU General Public License v2.0 | 6 votes |
/** Obtains an IOR for the object reference obj, first connecting it to * the ORB if necessary. * @return IOR the IOR that represents this objref. This will * never be null. * @exception BAD_OPERATION if the object could not be connected, * if a connection attempt was needed. * @exception BAD_PARAM if obj is a local object, or else was * created by a foreign ORB. */ public static IOR connectAndGetIOR( ORB orb, org.omg.CORBA.Object obj ) { IOR result ; try { result = getIOR( obj ) ; } catch (BAD_OPERATION bop) { if (StubAdapter.isStub(obj)) { try { StubAdapter.connect( obj, orb ) ; } catch (java.rmi.RemoteException exc) { throw wrapper.connectingServant( exc ) ; } } else { orb.connect( obj ) ; } result = getIOR( obj ) ; } return result ; }
Example 12
Source Project: hottub Source File: ORBUtility.java License: GNU General Public License v2.0 | 6 votes |
/** Obtains an IOR for the object reference obj, first connecting it to * the ORB if necessary. * @return IOR the IOR that represents this objref. This will * never be null. * @exception BAD_OPERATION if the object could not be connected, * if a connection attempt was needed. * @exception BAD_PARAM if obj is a local object, or else was * created by a foreign ORB. */ public static IOR connectAndGetIOR( ORB orb, org.omg.CORBA.Object obj ) { IOR result ; try { result = getIOR( obj ) ; } catch (BAD_OPERATION bop) { if (StubAdapter.isStub(obj)) { try { StubAdapter.connect( obj, orb ) ; } catch (java.rmi.RemoteException exc) { throw wrapper.connectingServant( exc ) ; } } else { orb.connect( obj ) ; } result = getIOR( obj ) ; } return result ; }
Example 13
Source Project: jdk1.8-source-analysis Source File: MessageBase.java License: Apache License 2.0 | 6 votes |
public static ReplyMessage createReply( ORB orb, GIOPVersion gv, byte encodingVersion, int request_id, int reply_status, ServiceContexts service_contexts, IOR ior) { if (gv.equals(GIOPVersion.V1_0)) { // 1.0 return new ReplyMessage_1_0(orb, service_contexts, request_id, reply_status, ior); } else if (gv.equals(GIOPVersion.V1_1)) { // 1.1 return new ReplyMessage_1_1(orb, service_contexts, request_id, reply_status, ior); } else if (gv.equals(GIOPVersion.V1_2)) { // 1.2 ReplyMessage msg = new ReplyMessage_1_2(orb, request_id, reply_status, service_contexts, ior); msg.setEncodingVersion(encodingVersion); return msg; } else { throw wrapper.giopVersionError( CompletionStatus.COMPLETED_MAYBE); } }
Example 14
Source Project: openjdk-jdk9 Source File: PIHandlerImpl.java License: GNU General Public License v2.0 | 6 votes |
/** * Handles exceptions for the starting and intermediate points for * server request interceptors. This is common code that has been * factored out into this utility method. * <p> * This method will NOT work for ending points. */ private void serverPIHandleExceptions( ServerRequestInfoImpl info ) { int endingPointCall = info.getEndingPointCall(); if(endingPointCall == ServerRequestInfoImpl.CALL_SEND_EXCEPTION) { // If a system exception was thrown, throw it to caller: throw (SystemException)info.getException(); } else if( (endingPointCall == ServerRequestInfoImpl.CALL_SEND_OTHER) && (info.getForwardRequestException() != null) ) { // If an interceptor throws a forward request, convert it // into a ForwardException for easier handling: IOR ior = info.getForwardRequestIOR(); throw new ForwardException( orb, ior ); } }
Example 15
Source Project: JDKSourceCode1.8 Source File: DefaultSocketFactory.java License: MIT License | 5 votes |
public SocketInfo getEndPointInfo(ORB orb, IOR ior, SocketInfo socketInfo) { IIOPProfileTemplate temp = (IIOPProfileTemplate)ior.getProfile().getTaggedProfileTemplate() ; IIOPAddress primary = temp.getPrimaryAddress() ; return new EndPointInfoImpl(ORBSocketFactory.IIOP_CLEAR_TEXT, primary.getPort(), primary.getHost().toLowerCase()); }
Example 16
Source Project: openjdk-jdk9 Source File: INSServerRequestDispatcher.java License: GNU General Public License v2.0 | 5 votes |
/** * getINSReference if it is registered in INSObjectKeyMap. */ private IOR getINSReference( String insKey ) { IOR entry = ORBUtility.getIOR( orb.getLocalResolver().resolve( insKey ) ) ; if( entry != null ) { // If entry is not null then the locate is with an INS Object key, // so send a location forward with the right IOR. return entry; } throw wrapper.servantNotFound() ; }
Example 17
Source Project: hottub Source File: LocateReplyMessage_1_1.java License: GNU General Public License v2.0 | 5 votes |
LocateReplyMessage_1_1(ORB orb, int _request_id, int _reply_status, IOR _ior) { super(Message.GIOPBigMagic, GIOPVersion.V1_1, FLAG_NO_FRAG_BIG_ENDIAN, Message.GIOPLocateReply, 0); this.orb = orb; request_id = _request_id; reply_status = _reply_status; ior = _ior; }
Example 18
Source Project: hottub Source File: IDLJavaSerializationOutputStream.java License: GNU General Public License v2.0 | 5 votes |
public final void write_Object(org.omg.CORBA.Object value) { if (value == null) { IOR nullIOR = IORFactories.makeIOR(orb); nullIOR.write(parent); return; } // IDL to Java formal 01-06-06 1.21.4.2 if (value instanceof org.omg.CORBA.LocalObject) { throw wrapper.writeLocalObject(CompletionStatus.COMPLETED_MAYBE); } IOR ior = ORBUtility.connectAndGetIOR(orb, value); ior.write(parent); return; }
Example 19
Source Project: openjdk-8-source Source File: IORImpl.java License: GNU General Public License v2.0 | 5 votes |
public boolean isEquivalent(IOR ior) { Iterator myIterator = iterator() ; Iterator otherIterator = ior.iterator() ; while (myIterator.hasNext() && otherIterator.hasNext()) { TaggedProfile myProfile = (TaggedProfile)(myIterator.next()) ; TaggedProfile otherProfile = (TaggedProfile)(otherIterator.next()) ; if (!myProfile.isEquivalent( otherProfile )) return false ; } return myIterator.hasNext() == otherIterator.hasNext() ; }
Example 20
Source Project: TencentKona-8 Source File: SharedCDRContactInfoImpl.java License: GNU General Public License v2.0 | 5 votes |
public SharedCDRContactInfoImpl( ORB orb, CorbaContactInfoList contactInfoList, IOR effectiveTargetIOR, short addressingDisposition) { this.orb = orb; this.contactInfoList = contactInfoList; this.effectiveTargetIOR = effectiveTargetIOR; this.addressingDisposition = addressingDisposition; }
Example 21
Source Project: openjdk-jdk9 Source File: RequestDispatcherDefault.java License: GNU General Public License v2.0 | 5 votes |
public static LocalClientRequestDispatcherFactory makePOALocalClientRequestDispatcherFactory( final ORB orb ) { return new LocalClientRequestDispatcherFactory() { public LocalClientRequestDispatcher create( int id, IOR ior ) { return new POALocalCRDImpl( orb, id, ior ) ; } } ; }
Example 22
Source Project: openjdk-jdk9 Source File: IORImpl.java License: GNU General Public License v2.0 | 5 votes |
public org.omg.IOP.IOR getIOPIOR() { EncapsOutputStream os = sun.corba.OutputStreamFactory.newEncapsOutputStream(factory); write(os); InputStream is = (InputStream) (os.create_input_stream()); return org.omg.IOP.IORHelper.read(is); }
Example 23
Source Project: jdk8u60 Source File: ReplyMessage_1_1.java License: GNU General Public License v2.0 | 5 votes |
ReplyMessage_1_1(ORB orb, ServiceContexts _service_contexts, int _request_id, int _reply_status, IOR _ior) { super(Message.GIOPBigMagic, GIOPVersion.V1_1, FLAG_NO_FRAG_BIG_ENDIAN, Message.GIOPReply, 0); this.orb = orb; this.wrapper = ORBUtilSystemException.get( orb, CORBALogDomains.RPC_PROTOCOL ) ; service_contexts = _service_contexts; request_id = _request_id; reply_status = _reply_status; ior = _ior; }
Example 24
Source Project: jdk1.8-source-analysis Source File: INSServerRequestDispatcher.java License: Apache License 2.0 | 5 votes |
/** * getINSReference if it is registered in INSObjectKeyMap. */ private IOR getINSReference( String insKey ) { IOR entry = ORBUtility.getIOR( orb.getLocalResolver().resolve( insKey ) ) ; if( entry != null ) { // If entry is not null then the locate is with an INS Object key, // so send a location forward with the right IOR. return entry; } throw wrapper.servantNotFound() ; }
Example 25
Source Project: jdk1.8-source-analysis Source File: CorbaMessageMediatorImpl.java License: Apache License 2.0 | 5 votes |
public CorbaMessageMediatorImpl(ORB orb, ContactInfo contactInfo, Connection connection, GIOPVersion giopVersion, IOR ior, int requestId, short addrDisposition, String operationName, boolean isOneWay) { this( orb, connection ) ; this.contactInfo = (CorbaContactInfo) contactInfo; this.addrDisposition = addrDisposition; streamFormatVersion = getStreamFormatVersionForThisRequest( ((CorbaContactInfo)this.contactInfo).getEffectiveTargetIOR(), giopVersion); streamFormatVersionSet = true; requestHeader = (RequestMessage) MessageBase.createRequest( this.orb, giopVersion, ORBUtility.getEncodingVersion(orb, ior), requestId, !isOneWay, ((CorbaContactInfo)this.contactInfo).getEffectiveTargetIOR(), this.addrDisposition, operationName, new ServiceContexts(orb), null); }
Example 26
Source Project: openjdk-jdk8u-backup Source File: CachedCodeBase.java License: GNU General Public License v2.0 | 5 votes |
public static synchronized void cleanCache( ORB orb ) { synchronized (iorMapLock) { for (IOR ior : iorMap.keySet()) { if (ior.getORB() == orb) { iorMap.remove(ior); } } } }
Example 27
Source Project: openjdk-8 Source File: ORBUtility.java License: GNU General Public License v2.0 | 5 votes |
/** * @return the Java serialization encoding version. */ public static byte getEncodingVersion(ORB orb, IOR ior) { // Is Java serialization enabled? // Check the JavaSerializationComponent (tagged component) // in the IIOPProfile. If present, the peer ORB's GIOP is capable // of using Java serialization instead of CDR serialization. // In such a case, use Java serialization, iff the java serialization // versions match. if (orb.getORBData().isJavaSerializationEnabled()) { IIOPProfile prof = ior.getProfile(); IIOPProfileTemplate profTemp = (IIOPProfileTemplate) prof.getTaggedProfileTemplate(); java.util.Iterator iter = profTemp.iteratorById( ORBConstants.TAG_JAVA_SERIALIZATION_ID); if (iter.hasNext()) { JavaSerializationComponent jc = (JavaSerializationComponent) iter.next(); byte jcVersion = jc.javaSerializationVersion(); if (jcVersion >= Message.JAVA_ENC_VERSION) { return Message.JAVA_ENC_VERSION; } else if (jcVersion > Message.CDR_ENC_VERSION) { return jc.javaSerializationVersion(); } else { // throw error? // Since encodingVersion is <= 0 (CDR_ENC_VERSION). } } } return Message.CDR_ENC_VERSION; // default }
Example 28
Source Project: openjdk-jdk8u Source File: DefaultIORToSocketInfoImpl.java License: GNU General Public License v2.0 | 5 votes |
public List getSocketInfo(IOR ior) { SocketInfo socketInfo; List result = new ArrayList(); IIOPProfileTemplate iiopProfileTemplate = (IIOPProfileTemplate) ior.getProfile().getTaggedProfileTemplate() ; IIOPAddress primary = iiopProfileTemplate.getPrimaryAddress() ; String hostname = primary.getHost().toLowerCase(); int port = primary.getPort(); // NOTE: we could check for 0 (i.e., CSIv2) but, for a // non-CSIv2-configured client ORB talking to a CSIv2 configured // server ORB you might end up with an empty contact info list // which would then report a failure which would not be as // instructive as leaving a ContactInfo with a 0 port in the list. socketInfo = createSocketInfo(hostname, port); result.add(socketInfo); Iterator iterator = iiopProfileTemplate.iteratorById( TAG_ALTERNATE_IIOP_ADDRESS.value); while (iterator.hasNext()) { AlternateIIOPAddressComponent alternate = (AlternateIIOPAddressComponent) iterator.next(); hostname = alternate.getAddress().getHost().toLowerCase(); port = alternate.getAddress().getPort(); socketInfo= createSocketInfo(hostname, port); result.add(socketInfo); } return result; }
Example 29
Source Project: openjdk-jdk8u-backup Source File: ORBUtility.java License: GNU General Public License v2.0 | 5 votes |
/** * @return the Java serialization encoding version. */ public static byte getEncodingVersion(ORB orb, IOR ior) { // Is Java serialization enabled? // Check the JavaSerializationComponent (tagged component) // in the IIOPProfile. If present, the peer ORB's GIOP is capable // of using Java serialization instead of CDR serialization. // In such a case, use Java serialization, iff the java serialization // versions match. if (orb.getORBData().isJavaSerializationEnabled()) { IIOPProfile prof = ior.getProfile(); IIOPProfileTemplate profTemp = (IIOPProfileTemplate) prof.getTaggedProfileTemplate(); java.util.Iterator iter = profTemp.iteratorById( ORBConstants.TAG_JAVA_SERIALIZATION_ID); if (iter.hasNext()) { JavaSerializationComponent jc = (JavaSerializationComponent) iter.next(); byte jcVersion = jc.javaSerializationVersion(); if (jcVersion >= Message.JAVA_ENC_VERSION) { return Message.JAVA_ENC_VERSION; } else if (jcVersion > Message.CDR_ENC_VERSION) { return jc.javaSerializationVersion(); } else { // throw error? // Since encodingVersion is <= 0 (CDR_ENC_VERSION). } } } return Message.CDR_ENC_VERSION; // default }
Example 30
Source Project: jdk8u60 Source File: IORImpl.java License: GNU General Public License v2.0 | 5 votes |
public boolean equals( Object obj ) { if (obj == null) return false ; if (!(obj instanceof IOR)) return false ; IOR other = (IOR)obj ; return super.equals( obj ) && typeId.equals( other.getTypeId() ) ; }