org.omg.PortableInterceptor.ServerRequestInterceptor Java Examples

The following examples show how to use org.omg.PortableInterceptor.ServerRequestInterceptor. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ORBInitInfoImpl.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
public void add_server_request_interceptor_with_policy (
    ServerRequestInterceptor interceptor, Policy[] policies )
    throws DuplicateName, PolicyError
{
    // XXX ignore policies for now
    add_server_request_interceptor( interceptor ) ;
}
 
Example #2
Source File: ORBInitInfoImpl.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * This operation is used to add a server-side request Interceptor to
 * the list of server-side request Interceptors.
 * <p>
 * If a server-side request Interceptor has already been registered
 * with this Interceptor's name, DuplicateName is raised.
 */
public void add_server_request_interceptor (
    ServerRequestInterceptor interceptor)
    throws DuplicateName
{
    checkStage();
    if( interceptor == null ) nullParam();

    orb.getPIHandler().register_interceptor( interceptor,
        InterceptorList.INTERCEPTOR_TYPE_SERVER );
}
 
Example #3
Source File: ORBInitInfoImpl.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
public void add_server_request_interceptor_with_policy (
    ServerRequestInterceptor interceptor, Policy[] policies )
    throws DuplicateName, PolicyError
{
    // XXX ignore policies for now
    add_server_request_interceptor( interceptor ) ;
}
 
Example #4
Source File: ORBInitInfoImpl.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
/**
 * This operation is used to add a server-side request Interceptor to
 * the list of server-side request Interceptors.
 * <p>
 * If a server-side request Interceptor has already been registered
 * with this Interceptor's name, DuplicateName is raised.
 */
public void add_server_request_interceptor (
    ServerRequestInterceptor interceptor)
    throws DuplicateName
{
    checkStage();
    if( interceptor == null ) nullParam();

    orb.getPIHandler().register_interceptor( interceptor,
        InterceptorList.INTERCEPTOR_TYPE_SERVER );
}
 
Example #5
Source File: ORBInitInfoImpl.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
public void add_server_request_interceptor_with_policy (
    ServerRequestInterceptor interceptor, Policy[] policies )
    throws DuplicateName, PolicyError
{
    // XXX ignore policies for now
    add_server_request_interceptor( interceptor ) ;
}
 
Example #6
Source File: ORBInitInfoImpl.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
/**
 * This operation is used to add a server-side request Interceptor to
 * the list of server-side request Interceptors.
 * <p>
 * If a server-side request Interceptor has already been registered
 * with this Interceptor's name, DuplicateName is raised.
 */
public void add_server_request_interceptor (
    ServerRequestInterceptor interceptor)
    throws DuplicateName
{
    checkStage();
    if( interceptor == null ) nullParam();

    orb.getPIHandler().register_interceptor( interceptor,
        InterceptorList.INTERCEPTOR_TYPE_SERVER );
}
 
Example #7
Source File: ORBInitInfoImpl.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
public void add_server_request_interceptor_with_policy (
    ServerRequestInterceptor interceptor, Policy[] policies )
    throws DuplicateName, PolicyError
{
    // XXX ignore policies for now
    add_server_request_interceptor( interceptor ) ;
}
 
Example #8
Source File: ORBInitInfoImpl.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * This operation is used to add a server-side request Interceptor to
 * the list of server-side request Interceptors.
 * <p>
 * If a server-side request Interceptor has already been registered
 * with this Interceptor's name, DuplicateName is raised.
 */
public void add_server_request_interceptor (
    ServerRequestInterceptor interceptor)
    throws DuplicateName
{
    checkStage();
    if( interceptor == null ) nullParam();

    orb.getPIHandler().register_interceptor( interceptor,
        InterceptorList.INTERCEPTOR_TYPE_SERVER );
}
 
Example #9
Source File: ORBInitInfoImpl.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
public void add_server_request_interceptor_with_policy (
    ServerRequestInterceptor interceptor, Policy[] policies )
    throws DuplicateName, PolicyError
{
    // XXX ignore policies for now
    add_server_request_interceptor( interceptor ) ;
}
 
Example #10
Source File: ORBInitInfoImpl.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
/**
 * This operation is used to add a server-side request Interceptor to
 * the list of server-side request Interceptors.
 * <p>
 * If a server-side request Interceptor has already been registered
 * with this Interceptor's name, DuplicateName is raised.
 */
public void add_server_request_interceptor (
    ServerRequestInterceptor interceptor)
    throws DuplicateName
{
    checkStage();
    if( interceptor == null ) nullParam();

    orb.getPIHandler().register_interceptor( interceptor,
        InterceptorList.INTERCEPTOR_TYPE_SERVER );
}
 
Example #11
Source File: ORBInitInfoImpl.java    From jdk1.8-source-analysis with Apache License 2.0 5 votes vote down vote up
public void add_server_request_interceptor_with_policy (
    ServerRequestInterceptor interceptor, Policy[] policies )
    throws DuplicateName, PolicyError
{
    // XXX ignore policies for now
    add_server_request_interceptor( interceptor ) ;
}
 
Example #12
Source File: ORBInitInfoImpl.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
/**
 * This operation is used to add a server-side request Interceptor to
 * the list of server-side request Interceptors.
 * <p>
 * If a server-side request Interceptor has already been registered
 * with this Interceptor's name, DuplicateName is raised.
 */
public void add_server_request_interceptor (
    ServerRequestInterceptor interceptor)
    throws DuplicateName
{
    checkStage();
    if( interceptor == null ) nullParam();

    orb.getPIHandler().register_interceptor( interceptor,
        InterceptorList.INTERCEPTOR_TYPE_SERVER );
}
 
Example #13
Source File: ORBInitInfoImpl.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
public void add_server_request_interceptor_with_policy (
    ServerRequestInterceptor interceptor, Policy[] policies )
    throws DuplicateName, PolicyError
{
    // XXX ignore policies for now
    add_server_request_interceptor( interceptor ) ;
}
 
Example #14
Source File: ORBInitInfoImpl.java    From JDKSourceCode1.8 with MIT License 5 votes vote down vote up
/**
 * This operation is used to add a server-side request Interceptor to
 * the list of server-side request Interceptors.
 * <p>
 * If a server-side request Interceptor has already been registered
 * with this Interceptor's name, DuplicateName is raised.
 */
public void add_server_request_interceptor (
    ServerRequestInterceptor interceptor)
    throws DuplicateName
{
    checkStage();
    if( interceptor == null ) nullParam();

    orb.getPIHandler().register_interceptor( interceptor,
        InterceptorList.INTERCEPTOR_TYPE_SERVER );
}
 
Example #15
Source File: ORBInitInfoImpl.java    From JDKSourceCode1.8 with MIT License 5 votes vote down vote up
public void add_server_request_interceptor_with_policy (
    ServerRequestInterceptor interceptor, Policy[] policies )
    throws DuplicateName, PolicyError
{
    // XXX ignore policies for now
    add_server_request_interceptor( interceptor ) ;
}
 
Example #16
Source File: ORBInitInfoImpl.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * This operation is used to add a server-side request Interceptor to
 * the list of server-side request Interceptors.
 * <p>
 * If a server-side request Interceptor has already been registered
 * with this Interceptor's name, DuplicateName is raised.
 */
public void add_server_request_interceptor (
    ServerRequestInterceptor interceptor)
    throws DuplicateName
{
    checkStage();
    if( interceptor == null ) nullParam();

    orb.getPIHandler().register_interceptor( interceptor,
        InterceptorList.INTERCEPTOR_TYPE_SERVER );
}
 
Example #17
Source File: ORBInitInfoImpl.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
public void add_server_request_interceptor_with_policy (
    ServerRequestInterceptor interceptor, Policy[] policies )
    throws DuplicateName, PolicyError
{
    // XXX ignore policies for now
    add_server_request_interceptor( interceptor ) ;
}
 
Example #18
Source File: ORBInitInfoImpl.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * This operation is used to add a server-side request Interceptor to
 * the list of server-side request Interceptors.
 * <p>
 * If a server-side request Interceptor has already been registered
 * with this Interceptor's name, DuplicateName is raised.
 */
public void add_server_request_interceptor (
    ServerRequestInterceptor interceptor)
    throws DuplicateName
{
    checkStage();
    if( interceptor == null ) nullParam();

    orb.getPIHandler().register_interceptor( interceptor,
        InterceptorList.INTERCEPTOR_TYPE_SERVER );
}
 
Example #19
Source File: ORBInitInfoImpl.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
public void add_server_request_interceptor_with_policy (
    ServerRequestInterceptor interceptor, Policy[] policies )
    throws DuplicateName, PolicyError
{
    // XXX ignore policies for now
    add_server_request_interceptor( interceptor ) ;
}
 
Example #20
Source File: ORBInitInfoImpl.java    From jdk1.8-source-analysis with Apache License 2.0 5 votes vote down vote up
/**
 * This operation is used to add a server-side request Interceptor to
 * the list of server-side request Interceptors.
 * <p>
 * If a server-side request Interceptor has already been registered
 * with this Interceptor's name, DuplicateName is raised.
 */
public void add_server_request_interceptor (
    ServerRequestInterceptor interceptor)
    throws DuplicateName
{
    checkStage();
    if( interceptor == null ) nullParam();

    orb.getPIHandler().register_interceptor( interceptor,
        InterceptorList.INTERCEPTOR_TYPE_SERVER );
}