Searched defs:interceptor (Results 1 - 15 of 15) sorted by relevance

/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/legacy/interceptor/
H A DORBInitInfoExt.java26 package com.sun.corba.se.spi.legacy.interceptor;
H A DRequestInfoExt.java26 package com.sun.corba.se.spi.legacy.interceptor;
H A DUnknownType.java26 package com.sun.corba.se.spi.legacy.interceptor;
H A DIORInfoExt.java26 package com.sun.corba.se.spi.legacy.interceptor;
/openjdk7/jdk/src/share/classes/com/sun/jmx/interceptor/
H A DMBeanServerInterceptor.java26 package com.sun.jmx.interceptor;
42 * forwards received requests to its default interceptor, which may
44 * default interceptor may be changed via the {@link
48 * <p>The initial default interceptor provides the standard MBean
50 * represented by a Java object. A replacement default interceptor
53 * interceptor. Or, it may route each request to one of a number of
57 * <p>An interceptor, default or not, need not implement MBeans as
58 * Java objects, in the way that the initial default interceptor does.
H A DDefaultMBeanServerInterceptor.java26 package com.sun.jmx.interceptor;
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DSunJmxMBeanServer.java79 public void setMBeanServerInterceptor(MBeanServer interceptor); argument
H A DJmxMBeanServer.java28 import com.sun.jmx.interceptor.DefaultMBeanServerInterceptor;
29 import com.sun.jmx.interceptor.MBeanServerInterceptor;
1307 setMBeanServerInterceptor(MBeanServer interceptor) { argument
1310 if (interceptor == null) throw new
1312 mbsInterceptor = interceptor;
1434 // interceptor APIs - which is most probably going to be removed and
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/interceptors/
H A DInterceptorList.java47 * initialization and interceptor registration. The class is designed
48 * to easily allow for the addition of new interceptor types.
55 // NUM_INTERCEPTOR_TYPES represents the number of interceptor
64 // appropriate array type for each interceptor type. These must
94 * Registers an interceptor of the given type into the interceptor list.
102 * @exception DuplicateName Thrown if an interceptor of the given
105 void register_interceptor( Interceptor interceptor, int type ) argument
113 // Cache interceptor name:
114 String interceptorName = interceptor
[all...]
H A DORBInitInfoImpl.java46 import com.sun.corba.se.spi.legacy.interceptor.ORBInitInfoExt ;
265 ClientRequestInterceptor interceptor, Policy[] policies )
269 add_client_request_interceptor( interceptor ) ;
280 ClientRequestInterceptor interceptor)
284 if( interceptor == null ) nullParam();
286 orb.getPIHandler().register_interceptor( interceptor,
292 ServerRequestInterceptor interceptor, Policy[] policies )
296 add_server_request_interceptor( interceptor ) ;
307 ServerRequestInterceptor interceptor)
311 if( interceptor
264 add_client_request_interceptor_with_policy( ClientRequestInterceptor interceptor, Policy[] policies ) argument
279 add_client_request_interceptor( ClientRequestInterceptor interceptor) argument
291 add_server_request_interceptor_with_policy( ServerRequestInterceptor interceptor, Policy[] policies ) argument
306 add_server_request_interceptor( ServerRequestInterceptor interceptor) argument
318 add_ior_interceptor_with_policy( IORInterceptor interceptor, Policy[] policies ) argument
[all...]
H A DPINoOpHandlerImpl.java177 public void register_interceptor( Interceptor interceptor, int type ) argument
H A DPIHandlerImpl.java86 * Provides portable interceptor functionality.
221 // Create new interceptor list:
227 // Create new interceptor invoker, initially disabled:
279 // Enable interceptor invoker (not necessary if no interceptors
289 * 2) calls the Interceptor::destroy operation for each interceptor
378 // It should not be possible for an interceptor to throw
513 // invoke the client interceptor ending points.
623 // Remember exception so we can tell if an interceptor changed it.
642 // Check reply status. If an interceptor threw a SystemException
755 // If an interceptor throw
907 register_interceptor( Interceptor interceptor, int type ) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/protocol/
H A DPIHandler.java68 * IOR interceptor PI hooks
105 * Called for pseudo-ops to temporarily disable portable interceptor
112 * Called for pseudo-ops to re-enable portable interceptor
207 * @throws ForwardException Thrown if an interceptor raises
218 * @throws ForwardException Thrown if an interceptor raises
231 * @throws ForwardException Thrown if an interceptor raises
298 void register_interceptor( Interceptor interceptor, int type ) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DWSEndpointImpl.java234 public void schedule(final Packet request, final CompletionCallback callback, FiberContextSwitchInterceptor interceptor) { argument
235 processAsync(request, callback, interceptor, true);
238 private void processAsync(final Packet request, final CompletionCallback callback, FiberContextSwitchInterceptor interceptor, boolean schedule) { argument
244 if (interceptor != null) {
245 fiber.addInterceptor(interceptor);
281 public void process(final Packet request, final CompletionCallback callback, FiberContextSwitchInterceptor interceptor) { argument
282 processAsync(request, callback, interceptor, false);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DFiber.java169 * This flag is set to true when a new interceptor is added.
345 * So when the tubeline consists of X and Y, and when X installs an interceptor,
350 * <li>interceptor gets installed
351 * <li>interceptor.execute() is invoked
355 public void addInterceptor(@NotNull FiberContextSwitchInterceptor interceptor) { argument
360 interceptors.add(interceptor);
368 * The removal of the interceptor takes effect immediately after the current
374 * So when the tubeline consists of X and Y, and when Y uninstalls an interceptor
378 * <li>Y.processResponse() (notice that this happens with interceptor.execute() in the callstack)
379 * <li>interceptor get
388 removeInterceptor(@otNull FiberContextSwitchInterceptor interceptor) argument
[all...]

Completed in 105 milliseconds