diff options
author | Audrius Meskauskas <audriusa@Bioinformatics.org> | 2005-09-02 17:17:19 +0000 |
---|---|---|
committer | Audrius Meskauskas <audriusa@Bioinformatics.org> | 2005-09-02 17:17:19 +0000 |
commit | 022f037d6c9318bd6e5c2e37f958993b10277351 (patch) | |
tree | 1757908e32f271d23cc68bdc1f60c47c2a710b73 /org | |
parent | 4e1906515ffaa1ac9d4d5668e98649c35b57c5d7 (diff) | |
download | classpath-022f037d6c9318bd6e5c2e37f958993b10277351.tar.gz |
2005-09-02 <AudriusA@Bioinformatics.org>
* org/omg/PortableInterceptor/CurrentOperations.java:
Inherit from org.omg.CORBA.CurrentOperations.
* org/omg/PortableInterceptor/ClientRequestInterceptorOperations.java
(send_poll): Remove ForwardRequest from declaration.
Diffstat (limited to 'org')
-rw-r--r-- | org/omg/PortableInterceptor/ClientRequestInterceptorOperations.java | 6 | ||||
-rw-r--r-- | org/omg/PortableInterceptor/CurrentOperations.java | 3 |
2 files changed, 3 insertions, 6 deletions
diff --git a/org/omg/PortableInterceptor/ClientRequestInterceptorOperations.java b/org/omg/PortableInterceptor/ClientRequestInterceptorOperations.java index e9630dcc8..4a60b77f5 100644 --- a/org/omg/PortableInterceptor/ClientRequestInterceptorOperations.java +++ b/org/omg/PortableInterceptor/ClientRequestInterceptorOperations.java @@ -123,10 +123,6 @@ public interface ClientRequestInterceptorOperations * @throws SystemException if it does, the send_poll is not called for the * subsequent interceptors, calling receive_exception instead. The completion * status of this exception must be COMPLETED_NO. - * - * @throws ForwardRequest to forward the invocation to another target. The - * send_request is not called for the subsequent interceptors, calling - * receive_other instead. */ - void send_poll(ClientRequestInfo info) throws ForwardRequest; + void send_poll(ClientRequestInfo info); }
\ No newline at end of file diff --git a/org/omg/PortableInterceptor/CurrentOperations.java b/org/omg/PortableInterceptor/CurrentOperations.java index 419ccfac1..63515678e 100644 --- a/org/omg/PortableInterceptor/CurrentOperations.java +++ b/org/omg/PortableInterceptor/CurrentOperations.java @@ -54,13 +54,14 @@ import org.omg.CORBA.BAD_INV_ORDER; * @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org) */ public interface CurrentOperations + extends org.omg.CORBA.CurrentOperations { /** * Get data from the slot with the given slot_id. * * @param slot_id the slot slot_id. * - * @return the Any that was stored in the slot. If the given slot has not been + * @return the Any that was stored in the slot. If the given slot has not been * set, the returned Any contains a type code with a TCKind value of tk_null * and has no value. * |