Searched defs:repositoryID (Results 1 - 8 of 8) sorted by relevance

/openjdk7/corba/src/share/classes/javax/rmi/CORBA/
H A DValueHandler.java53 * @param repositoryID the RepositoryId of the value to be read in.
60 String repositoryID,
57 readValue(org.omg.CORBA.portable.InputStream in, int offset, java.lang.Class clz, String repositoryID, org.omg.SendingContext.RunTime sender) argument
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DSymtabEntry.java223 public RepositoryID repositoryID () method in class:SymtabEntry
226 } // repositoryID
230 public void repositoryID (RepositoryID id) method in class:SymtabEntry
233 } // repositoryID
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/io/
H A DValueHandlerImpl.java248 String repositoryID,
272 result = (java.io.Serializable) readValueInternal(inputStreamBridge, in, offset, clazz, repositoryID, sender);
307 result = (java.io.Serializable) readValueInternal(jdkToOrbInputStreamBridge, in, offset, clazz, repositoryID, sender);
323 String repositoryID,
330 if (isArray(repositoryID)){
333 bridge.simpleSkipObject(repositoryID, sender);
341 result = (java.io.Serializable)bridge.simpleReadObject(clazz, repositoryID, sender, offset);
399 public boolean useFullValueDescription(Class clazz, String repositoryID) argument
402 return RepositoryId.useFullValueDescription(clazz, repositoryID);
245 readValue(org.omg.CORBA.portable.InputStream _in, int offset, java.lang.Class clazz, String repositoryID, org.omg.SendingContext.RunTime _sender) argument
319 readValueInternal(IIOPInputStream bridge, org.omg.CORBA_2_3.portable.InputStream in, int offset, java.lang.Class clazz, String repositoryID, com.sun.org.omg.SendingContext.CodeBase sender) argument
H A DIIOPInputStream.java393 String repositoryID,
413 if (vhandler.useFullValueDescription(clz, repositoryID)) {
414 obj = inputObjectUsingFVD(clz, repositoryID, sender, offset);
416 obj = inputObject(clz, repositoryID, sender, offset);
464 public final void simpleSkipObject(String repositoryID, argument
482 skipObjectUsingFVD(repositoryID, sender);
992 String repositoryID,
1286 // repositoryID. It is assumed that the sender will not provide base_value id's for non-serializable
1288 private Vector getOrderedDescriptions(String repositoryID, argument
1296 FullValueDescription aFVD = sender.meta(repositoryID);
392 simpleReadObject(Class clz, String repositoryID, com.sun.org.omg.SendingContext.CodeBase sender, int offset) argument
991 inputObject(Class clz, String repositoryID, com.sun.org.omg.SendingContext.CodeBase sender, int offset) argument
1320 inputObjectUsingFVD(Class clz, String repositoryID, com.sun.org.omg.SendingContext.CodeBase sender, int offset) argument
1645 skipObjectUsingFVD(String repositoryID, com.sun.org.omg.SendingContext.CodeBase sender) argument
[all...]
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DType.java137 private String repositoryID; field in class:Type
226 return repositoryID;
712 repositoryID = null;
986 * Set the clz and repositoryID fields. Reports error
997 // Now make the repositoryID and return success...
999 repositoryID = RepositoryId.createForAnyType(ourClass);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/util/
H A DRepositoryId.java559 * @exception Throws IOException if suids do not match or if the repositoryID
562 public static boolean useFullValueDescription(Class clazz, String repositoryID) argument
567 if (clazzRepIDStr.equals(repositoryID))
578 targetRepid = cache.getId(repositoryID);
588 clazzRepid.getSerialVersionUID() + " whereas Target (Rep. ID " + repositoryID +
599 throw new IOException("The repository ID is not of an RMI value type (Expected ID = " + clazzRepIDStr + "; Received ID = " + repositoryID +")");
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orb/
H A DORBImpl.java1471 * @param repositoryID the repository ID.
1477 public synchronized ValueFactory register_value_factory(String repositoryID, argument
1482 if ((repositoryID == null) || (factory == null))
1485 return (ValueFactory)valueFactoryCache.put(repositoryID, factory);
1491 * @param repositoryID the repository ID.
1493 public synchronized void unregister_value_factory(String repositoryID) argument
1497 if (valueFactoryCache.remove(repositoryID) == null)
1506 * @param repositoryID the repository ID.
1510 public synchronized ValueFactory lookup_value_factory(String repositoryID) argument
1515 (ValueFactory)valueFactoryCache.get(repositoryID);
[all...]
H A DORBSingleton.java413 public org.omg.CORBA.portable.ValueFactory register_value_factory(String repositoryID, argument
419 public void unregister_value_factory(String repositoryID) argument
424 public org.omg.CORBA.portable.ValueFactory lookup_value_factory(String repositoryID) argument

Completed in 66 milliseconds