Searched refs:interceptors (Results 1 - 18 of 18) sorted by relevance

/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/impl/interceptors/
H A DInterceptorList.java26 package com.sun.corba.se.impl.interceptors;
52 // Interceptor type list. If additional interceptors are needed,
63 // Array of class types for interceptors. This is used to create the
72 // True if no further interceptors may be registered with this list.
76 // List of interceptors currently registered. There are
77 // NUM_INTERCEPTOR_TYPES lists of registered interceptors.
78 // For example, interceptors[INTERCEPTOR_TYPE_CLIENT] contains an array
80 private Interceptor[][] interceptors = field in class:InterceptorList
89 // Create empty interceptors arrays for each type:
108 // If locked, deny any further addition of interceptors
[all...]
H A DInterceptorInvoker.java25 package com.sun.corba.se.impl.interceptors;
51 * Handles invocation of interceptors. Has specific knowledge of how to
52 * invoke IOR, ClientRequest, and ServerRequest interceptors.
53 * Makes use of the InterceptorList to retrieve the list of interceptors to
62 // The list of interceptors to be invoked
65 // True if interceptors are to be invoked, or false if not
154 // template interceptors on this POA.
162 IORInterceptor[] interceptors =
165 int size = interceptors.length;
169 IORInterceptor interceptor = interceptors[
[all...]
H A DCodecFactoryImpl.java26 package com.sun.corba.se.impl.interceptors;
H A DSlotTable.java26 package com.sun.corba.se.impl.interceptors;
H A DPICurrent.java26 package com.sun.corba.se.impl.interceptors;
H A DPINoOpHandlerImpl.java26 package com.sun.corba.se.impl.interceptors;
H A DSlotTableStack.java26 package com.sun.corba.se.impl.interceptors;
H A DCDREncapsCodec.java26 package com.sun.corba.se.impl.interceptors;
H A DIORInfoImpl.java26 package com.sun.corba.se.impl.interceptors;
H A DORBInitInfoImpl.java26 package com.sun.corba.se.impl.interceptors;
H A DServerRequestInfoImpl.java25 package com.sun.corba.se.impl.interceptors;
301 // interceptors will not change the resulting byte[] array.
324 // interceptors will not change the resulting byte[] array.
504 * NOTE: The request id in server interceptors is NOT the
507 * Therefore we create a request id specific to interceptors.
542 // interceptors will be "good citizens" in that they will not
598 // interceptors will not modify the contents of the result Any.
H A DClientRequestInfoImpl.java26 package com.sun.corba.se.impl.interceptors;
335 // Good citizen: In the interest of efficiency, we assume interceptors
352 // Good citizen: In the interest of efficiency, we assume interceptors
443 // interceptors will not modify the returned TaggedCompoent[], or
460 * Allows interceptors to add service contexts to the request.
500 * NOTE: The requestId in client interceptors is the same as the
501 * GIOP request id. This works because both interceptors and
533 // interceptors will be "good citizens" in that they will not
568 // interceptors will be "good citizens" in that they will not
603 // interceptors wil
[all...]
H A DPIHandlerImpl.java25 package com.sun.corba.se.impl.interceptors;
130 // The list of portable interceptors, organized by type:
133 // Cached information for optimization - do we have any interceptors
139 // The class responsible for invoking interceptors
201 // Number of times a request has been made to disable interceptors.
254 // Proprietary: sort interceptors:
264 // Set cached flags indicating whether we have interceptors
279 // Enable interceptor invoker (not necessary if no interceptors
612 // Make forwarded IOR available to interceptors, if applicable:
620 // Make reply message available to interceptors
[all...]
H A DRequestInfoImpl.java25 package com.sun.corba.se.impl.interceptors;
116 // The number of interceptors actually invoked for this client request.
120 // The type of starting point call to make to the interceptors
125 // The type of intermediate point call to make to the interceptors
127 // This does not currently apply to client request interceptors but is
131 // The type of ending point call to make to the interceptors
150 // Set to true if all interceptors have had all their points
672 // Good citizen: For increased efficiency, we assume that interceptors
726 * Sets the number of interceptors whose starting interception
728 * in orbos/99-12-02, section 5.2.1., not all interceptors wil
[all...]
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/client/
H A DServiceInterceptor.java56 * Called before {@link WSBinding} is created, to allow interceptors
101 * Aggregates multiple interceptors into one facade.
103 public static ServiceInterceptor aggregate(final ServiceInterceptor... interceptors) { argument
104 if(interceptors.length==1)
105 return interceptors[0];
109 for (ServiceInterceptor si : interceptors)
115 for (ServiceInterceptor si : interceptors)
120 for (ServiceInterceptor si : interceptors)
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/pipe/
H A DFiber.java234 private List<FiberContextSwitchInterceptor> interceptors; field in class:Fiber
721 if (interceptors == null) {
722 interceptors = new ArrayList<FiberContextSwitchInterceptor>();
725 l.addAll(interceptors);
726 interceptors = l;
728 interceptors.add(interceptor);
755 if (interceptors != null) {
756 boolean result = interceptors.remove(interceptor);
757 if (interceptors.isEmpty())
758 interceptors
[all...]
/openjdk9/jdk/src/java.management/share/classes/com/sun/jmx/mbeanserver/
H A DJmxMBeanServer.java103 /** true if interceptors are enabled **/
125 * By default, interceptors are disabled. Use
161 * @param interceptors If <code>true</code>,
170 MBeanServerDelegate delegate, boolean interceptors) {
188 * @param interceptors If <code>true</code>,
195 boolean interceptors) {
196 this(domain,outer,delegate,instantiator,interceptors,true);
213 * @param interceptors If <code>true</code>,
223 boolean interceptors,
254 this.interceptorsEnabled = interceptors;
169 JmxMBeanServer(String domain, MBeanServer outer, MBeanServerDelegate delegate, boolean interceptors) argument
192 JmxMBeanServer(String domain, MBeanServer outer, MBeanServerDelegate delegate, MBeanInstantiator instantiator, boolean interceptors) argument
220 JmxMBeanServer(String domain, MBeanServer outer, MBeanServerDelegate delegate, MBeanInstantiator instantiator, boolean interceptors, boolean fairLock) argument
1418 newMBeanServer(String defaultDomain, MBeanServer outer, MBeanServerDelegate delegate, boolean interceptors) argument
[all...]
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/impl/orb/
H A DORBImpl.java146 import com.sun.corba.se.impl.interceptors.PIHandlerImpl;
147 import com.sun.corba.se.impl.interceptors.PINoOpHandlerImpl;

Completed in 177 milliseconds