Searched defs:objref (Results 1 - 2 of 2) sorted by relevance

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/oa/toa/
H A DTOAImpl.java174 public void connect( org.omg.CORBA.Object objref) argument
176 // Store the objref and get a userkey allocated by the transient
178 byte[] key = servants.storeServant(objref, null);
180 // Find out the repository ID for this objref.
181 String id = StubAdapter.getTypeIds( objref )[0] ;
183 // Create the new objref
187 // Copy the delegate from the new objref to the argument
199 jlcs.setServant( objref ) ;
205 StubAdapter.setDelegate( objref, delegate ) ;
208 public void disconnect( org.omg.CORBA.Object objref )
[all...]
/openjdk7/jdk/src/share/classes/javax/management/remote/rmi/
H A DRMIConnector.java1925 Object objref = ctx.lookup(jndiURL);
1929 return narrowIIOPServer(objref);
1931 return narrowJRMPServer(objref);
1934 private static RMIServer narrowJRMPServer(Object objref) { argument
1936 return (RMIServer) objref;
1939 private static RMIServer narrowIIOPServer(Object objref) { argument
1941 return IIOPHelper.narrow(objref, RMIServer.class);
1944 logger.trace("narrowIIOPServer","Failed to narrow objref=" +
1945 objref + ": " + e);

Completed in 37 milliseconds