Java Code Examples for org.omg.PortableInterceptor.ORBInitInfoPackage.DuplicateName
The following examples show how to use
org.omg.PortableInterceptor.ORBInitInfoPackage.DuplicateName.
These examples are extracted from open source projects.
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 Project: jdk1.8-source-analysis Author: raysonfang File: PIHandlerImpl.java License: Apache License 2.0 | 6 votes |
/** * Called by ORBInitInfo when an interceptor needs to be registered. * The type is one of: * <ul> * <li>INTERCEPTOR_TYPE_CLIENT - ClientRequestInterceptor * <li>INTERCEPTOR_TYPE_SERVER - ServerRequestInterceptor * <li>INTERCEPTOR_TYPE_IOR - IORInterceptor * </ul> * * @exception DuplicateName Thrown if an interceptor of the given * name already exists for the given type. */ public void register_interceptor( Interceptor interceptor, int type ) throws DuplicateName { // We will assume interceptor is not null, since it is called // internally. if( (type >= InterceptorList.NUM_INTERCEPTOR_TYPES) || (type < 0) ) { throw wrapper.typeOutOfRange( new Integer( type ) ) ; } String interceptorName = interceptor.name(); if( interceptorName == null ) { throw wrapper.nameNull() ; } // Register with interceptor list: interceptorList.register_interceptor( interceptor, type ); }
Example #2
Source Project: TencentKona-8 Author: Tencent File: PIHandlerImpl.java License: GNU General Public License v2.0 | 6 votes |
/** * Called by ORBInitInfo when an interceptor needs to be registered. * The type is one of: * <ul> * <li>INTERCEPTOR_TYPE_CLIENT - ClientRequestInterceptor * <li>INTERCEPTOR_TYPE_SERVER - ServerRequestInterceptor * <li>INTERCEPTOR_TYPE_IOR - IORInterceptor * </ul> * * @exception DuplicateName Thrown if an interceptor of the given * name already exists for the given type. */ public void register_interceptor( Interceptor interceptor, int type ) throws DuplicateName { // We will assume interceptor is not null, since it is called // internally. if( (type >= InterceptorList.NUM_INTERCEPTOR_TYPES) || (type < 0) ) { throw wrapper.typeOutOfRange( new Integer( type ) ) ; } String interceptorName = interceptor.name(); if( interceptorName == null ) { throw wrapper.nameNull() ; } // Register with interceptor list: interceptorList.register_interceptor( interceptor, type ); }
Example #3
Source Project: JDKSourceCode1.8 Author: wupeixuan File: PIHandlerImpl.java License: MIT License | 6 votes |
/** * Called by ORBInitInfo when an interceptor needs to be registered. * The type is one of: * <ul> * <li>INTERCEPTOR_TYPE_CLIENT - ClientRequestInterceptor * <li>INTERCEPTOR_TYPE_SERVER - ServerRequestInterceptor * <li>INTERCEPTOR_TYPE_IOR - IORInterceptor * </ul> * * @exception DuplicateName Thrown if an interceptor of the given * name already exists for the given type. */ public void register_interceptor( Interceptor interceptor, int type ) throws DuplicateName { // We will assume interceptor is not null, since it is called // internally. if( (type >= InterceptorList.NUM_INTERCEPTOR_TYPES) || (type < 0) ) { throw wrapper.typeOutOfRange( new Integer( type ) ) ; } String interceptorName = interceptor.name(); if( interceptorName == null ) { throw wrapper.nameNull() ; } // Register with interceptor list: interceptorList.register_interceptor( interceptor, type ); }
Example #4
Source Project: openjdk-jdk8u-backup Author: AdoptOpenJDK File: PIHandlerImpl.java License: GNU General Public License v2.0 | 6 votes |
/** * Called by ORBInitInfo when an interceptor needs to be registered. * The type is one of: * <ul> * <li>INTERCEPTOR_TYPE_CLIENT - ClientRequestInterceptor * <li>INTERCEPTOR_TYPE_SERVER - ServerRequestInterceptor * <li>INTERCEPTOR_TYPE_IOR - IORInterceptor * </ul> * * @exception DuplicateName Thrown if an interceptor of the given * name already exists for the given type. */ public void register_interceptor( Interceptor interceptor, int type ) throws DuplicateName { // We will assume interceptor is not null, since it is called // internally. if( (type >= InterceptorList.NUM_INTERCEPTOR_TYPES) || (type < 0) ) { throw wrapper.typeOutOfRange( new Integer( type ) ) ; } String interceptorName = interceptor.name(); if( interceptorName == null ) { throw wrapper.nameNull() ; } // Register with interceptor list: interceptorList.register_interceptor( interceptor, type ); }
Example #5
Source Project: openjdk-8-source Author: keerath File: PIHandlerImpl.java License: GNU General Public License v2.0 | 6 votes |
/** * Called by ORBInitInfo when an interceptor needs to be registered. * The type is one of: * <ul> * <li>INTERCEPTOR_TYPE_CLIENT - ClientRequestInterceptor * <li>INTERCEPTOR_TYPE_SERVER - ServerRequestInterceptor * <li>INTERCEPTOR_TYPE_IOR - IORInterceptor * </ul> * * @exception DuplicateName Thrown if an interceptor of the given * name already exists for the given type. */ public void register_interceptor( Interceptor interceptor, int type ) throws DuplicateName { // We will assume interceptor is not null, since it is called // internally. if( (type >= InterceptorList.NUM_INTERCEPTOR_TYPES) || (type < 0) ) { throw wrapper.typeOutOfRange( new Integer( type ) ) ; } String interceptorName = interceptor.name(); if( interceptorName == null ) { throw wrapper.nameNull() ; } // Register with interceptor list: interceptorList.register_interceptor( interceptor, type ); }
Example #6
Source Project: openjdk-jdk9 Author: AdoptOpenJDK File: PIHandlerImpl.java License: GNU General Public License v2.0 | 6 votes |
/** * Called by ORBInitInfo when an interceptor needs to be registered. * The type is one of: * <ul> * <li>INTERCEPTOR_TYPE_CLIENT - ClientRequestInterceptor * <li>INTERCEPTOR_TYPE_SERVER - ServerRequestInterceptor * <li>INTERCEPTOR_TYPE_IOR - IORInterceptor * </ul> * * @exception DuplicateName Thrown if an interceptor of the given * name already exists for the given type. */ public void register_interceptor( Interceptor interceptor, int type ) throws DuplicateName { // We will assume interceptor is not null, since it is called // internally. if( (type >= InterceptorList.NUM_INTERCEPTOR_TYPES) || (type < 0) ) { throw wrapper.typeOutOfRange( new Integer( type ) ) ; } String interceptorName = interceptor.name(); if( interceptorName == null ) { throw wrapper.nameNull() ; } // Register with interceptor list: interceptorList.register_interceptor( interceptor, type ); }
Example #7
Source Project: openjdk-8 Author: bpupadhyaya File: PIHandlerImpl.java License: GNU General Public License v2.0 | 6 votes |
/** * Called by ORBInitInfo when an interceptor needs to be registered. * The type is one of: * <ul> * <li>INTERCEPTOR_TYPE_CLIENT - ClientRequestInterceptor * <li>INTERCEPTOR_TYPE_SERVER - ServerRequestInterceptor * <li>INTERCEPTOR_TYPE_IOR - IORInterceptor * </ul> * * @exception DuplicateName Thrown if an interceptor of the given * name already exists for the given type. */ public void register_interceptor( Interceptor interceptor, int type ) throws DuplicateName { // We will assume interceptor is not null, since it is called // internally. if( (type >= InterceptorList.NUM_INTERCEPTOR_TYPES) || (type < 0) ) { throw wrapper.typeOutOfRange( new Integer( type ) ) ; } String interceptorName = interceptor.name(); if( interceptorName == null ) { throw wrapper.nameNull() ; } // Register with interceptor list: interceptorList.register_interceptor( interceptor, type ); }
Example #8
Source Project: openjdk-8 Author: bpupadhyaya File: ORBInitInfoImpl.java License: GNU General Public License v2.0 | 5 votes |
public void add_client_request_interceptor_with_policy ( ClientRequestInterceptor interceptor, Policy[] policies ) throws DuplicateName { // XXX ignore policies for now add_client_request_interceptor( interceptor ) ; }
Example #9
Source Project: jdk1.8-source-analysis Author: raysonfang File: ORBInitInfoImpl.java License: Apache License 2.0 | 5 votes |
public void add_client_request_interceptor_with_policy ( ClientRequestInterceptor interceptor, Policy[] policies ) throws DuplicateName { // XXX ignore policies for now add_client_request_interceptor( interceptor ) ; }
Example #10
Source Project: jdk1.8-source-analysis Author: raysonfang File: ORBInitInfoImpl.java License: Apache License 2.0 | 5 votes |
/** * This operation is used to add a client-side request Interceptor to * the list of client-side request Interceptors. * <p> * If a client-side request Interceptor has already been registered * with this Interceptor's name, DuplicateName is raised. */ public void add_client_request_interceptor ( ClientRequestInterceptor interceptor) throws DuplicateName { checkStage(); if( interceptor == null ) nullParam(); orb.getPIHandler().register_interceptor( interceptor, InterceptorList.INTERCEPTOR_TYPE_CLIENT ); }
Example #11
Source Project: jdk1.8-source-analysis Author: raysonfang File: ORBInitInfoImpl.java License: Apache License 2.0 | 5 votes |
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 Project: jdk1.8-source-analysis Author: raysonfang File: ORBInitInfoImpl.java License: Apache License 2.0 | 5 votes |
/** * 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 Project: jdk1.8-source-analysis Author: raysonfang File: ORBInitInfoImpl.java License: Apache License 2.0 | 5 votes |
public void add_ior_interceptor_with_policy ( IORInterceptor interceptor, Policy[] policies ) throws DuplicateName, PolicyError { // XXX ignore policies for now add_ior_interceptor( interceptor ) ; }
Example #14
Source Project: jdk1.8-source-analysis Author: raysonfang File: ORBInitInfoImpl.java License: Apache License 2.0 | 5 votes |
/** * This operation is used to add an IOR Interceptor to * the list of IOR Interceptors. * <p> * If an IOR Interceptor has already been registered * with this Interceptor's name, DuplicateName is raised. */ public void add_ior_interceptor ( IORInterceptor interceptor ) throws DuplicateName { checkStage(); if( interceptor == null ) nullParam(); orb.getPIHandler().register_interceptor( interceptor, InterceptorList.INTERCEPTOR_TYPE_IOR ); }
Example #15
Source Project: jdk1.8-source-analysis Author: raysonfang File: InterceptorList.java License: Apache License 2.0 | 5 votes |
/** * Registers an interceptor of the given type into the interceptor list. * The type is one of: * <ul> * <li>INTERCEPTOR_TYPE_CLIENT - ClientRequestInterceptor * <li>INTERCEPTOR_TYPE_SERVER - ServerRequestInterceptor * <li>INTERCEPTOR_TYPE_IOR - IORInterceptor * </ul> * * @exception DuplicateName Thrown if an interceptor of the given * name already exists for the given type. */ void register_interceptor( Interceptor interceptor, int type ) throws DuplicateName { // If locked, deny any further addition of interceptors. if( locked ) { throw wrapper.interceptorListLocked() ; } // Cache interceptor name: String interceptorName = interceptor.name(); boolean anonymous = interceptorName.equals( "" ); boolean foundDuplicate = false; Interceptor[] interceptorList = interceptors[type]; // If this is not an anonymous interceptor, // search for an interceptor of the same name in this category: if( !anonymous ) { int size = interceptorList.length; // An O(n) search will suffice because register_interceptor is not // likely to be called often. for( int i = 0; i < size; i++ ) { Interceptor in = (Interceptor)interceptorList[i]; if( in.name().equals( interceptorName ) ) { foundDuplicate = true; break; } } } if( !foundDuplicate ) { growInterceptorArray( type ); interceptors[type][interceptors[type].length-1] = interceptor; } else { throw new DuplicateName( interceptorName ); } }
Example #16
Source Project: openjdk-8-source Author: keerath File: ORBInitInfoImpl.java License: GNU General Public License v2.0 | 5 votes |
/** * 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 Project: TencentKona-8 Author: Tencent File: ORBInitInfoImpl.java License: GNU General Public License v2.0 | 5 votes |
/** * This operation is used to add a client-side request Interceptor to * the list of client-side request Interceptors. * <p> * If a client-side request Interceptor has already been registered * with this Interceptor's name, DuplicateName is raised. */ public void add_client_request_interceptor ( ClientRequestInterceptor interceptor) throws DuplicateName { checkStage(); if( interceptor == null ) nullParam(); orb.getPIHandler().register_interceptor( interceptor, InterceptorList.INTERCEPTOR_TYPE_CLIENT ); }
Example #18
Source Project: openjdk-8-source Author: keerath File: ORBInitInfoImpl.java License: GNU General Public License v2.0 | 5 votes |
/** * This operation is used to add a client-side request Interceptor to * the list of client-side request Interceptors. * <p> * If a client-side request Interceptor has already been registered * with this Interceptor's name, DuplicateName is raised. */ public void add_client_request_interceptor ( ClientRequestInterceptor interceptor) throws DuplicateName { checkStage(); if( interceptor == null ) nullParam(); orb.getPIHandler().register_interceptor( interceptor, InterceptorList.INTERCEPTOR_TYPE_CLIENT ); }
Example #19
Source Project: TencentKona-8 Author: Tencent File: ORBInitInfoImpl.java License: GNU General Public License v2.0 | 5 votes |
/** * 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 #20
Source Project: openjdk-8 Author: bpupadhyaya File: ORBInitInfoImpl.java License: GNU General Public License v2.0 | 5 votes |
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 #21
Source Project: openjdk-8 Author: bpupadhyaya File: ORBInitInfoImpl.java License: GNU General Public License v2.0 | 5 votes |
/** * 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 #22
Source Project: TencentKona-8 Author: Tencent File: InterceptorList.java License: GNU General Public License v2.0 | 5 votes |
/** * Registers an interceptor of the given type into the interceptor list. * The type is one of: * <ul> * <li>INTERCEPTOR_TYPE_CLIENT - ClientRequestInterceptor * <li>INTERCEPTOR_TYPE_SERVER - ServerRequestInterceptor * <li>INTERCEPTOR_TYPE_IOR - IORInterceptor * </ul> * * @exception DuplicateName Thrown if an interceptor of the given * name already exists for the given type. */ void register_interceptor( Interceptor interceptor, int type ) throws DuplicateName { // If locked, deny any further addition of interceptors. if( locked ) { throw wrapper.interceptorListLocked() ; } // Cache interceptor name: String interceptorName = interceptor.name(); boolean anonymous = interceptorName.equals( "" ); boolean foundDuplicate = false; Interceptor[] interceptorList = interceptors[type]; // If this is not an anonymous interceptor, // search for an interceptor of the same name in this category: if( !anonymous ) { int size = interceptorList.length; // An O(n) search will suffice because register_interceptor is not // likely to be called often. for( int i = 0; i < size; i++ ) { Interceptor in = (Interceptor)interceptorList[i]; if( in.name().equals( interceptorName ) ) { foundDuplicate = true; break; } } } if( !foundDuplicate ) { growInterceptorArray( type ); interceptors[type][interceptors[type].length-1] = interceptor; } else { throw new DuplicateName( interceptorName ); } }
Example #23
Source Project: openjdk-8 Author: bpupadhyaya File: ORBInitInfoImpl.java License: GNU General Public License v2.0 | 5 votes |
/** * This operation is used to add an IOR Interceptor to * the list of IOR Interceptors. * <p> * If an IOR Interceptor has already been registered * with this Interceptor's name, DuplicateName is raised. */ public void add_ior_interceptor ( IORInterceptor interceptor ) throws DuplicateName { checkStage(); if( interceptor == null ) nullParam(); orb.getPIHandler().register_interceptor( interceptor, InterceptorList.INTERCEPTOR_TYPE_IOR ); }
Example #24
Source Project: jdk8u60 Author: chenghanpeng File: ORBInitInfoImpl.java License: GNU General Public License v2.0 | 5 votes |
/** * This operation is used to add a client-side request Interceptor to * the list of client-side request Interceptors. * <p> * If a client-side request Interceptor has already been registered * with this Interceptor's name, DuplicateName is raised. */ public void add_client_request_interceptor ( ClientRequestInterceptor interceptor) throws DuplicateName { checkStage(); if( interceptor == null ) nullParam(); orb.getPIHandler().register_interceptor( interceptor, InterceptorList.INTERCEPTOR_TYPE_CLIENT ); }
Example #25
Source Project: jdk8u60 Author: chenghanpeng File: ORBInitInfoImpl.java License: GNU General Public License v2.0 | 5 votes |
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 #26
Source Project: jdk8u60 Author: chenghanpeng File: ORBInitInfoImpl.java License: GNU General Public License v2.0 | 5 votes |
/** * 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 #27
Source Project: jdk8u60 Author: chenghanpeng File: ORBInitInfoImpl.java License: GNU General Public License v2.0 | 5 votes |
public void add_ior_interceptor_with_policy ( IORInterceptor interceptor, Policy[] policies ) throws DuplicateName, PolicyError { // XXX ignore policies for now add_ior_interceptor( interceptor ) ; }
Example #28
Source Project: jdk8u60 Author: chenghanpeng File: ORBInitInfoImpl.java License: GNU General Public License v2.0 | 5 votes |
/** * This operation is used to add an IOR Interceptor to * the list of IOR Interceptors. * <p> * If an IOR Interceptor has already been registered * with this Interceptor's name, DuplicateName is raised. */ public void add_ior_interceptor ( IORInterceptor interceptor ) throws DuplicateName { checkStage(); if( interceptor == null ) nullParam(); orb.getPIHandler().register_interceptor( interceptor, InterceptorList.INTERCEPTOR_TYPE_IOR ); }
Example #29
Source Project: openjdk-8 Author: bpupadhyaya File: InterceptorList.java License: GNU General Public License v2.0 | 5 votes |
/** * Registers an interceptor of the given type into the interceptor list. * The type is one of: * <ul> * <li>INTERCEPTOR_TYPE_CLIENT - ClientRequestInterceptor * <li>INTERCEPTOR_TYPE_SERVER - ServerRequestInterceptor * <li>INTERCEPTOR_TYPE_IOR - IORInterceptor * </ul> * * @exception DuplicateName Thrown if an interceptor of the given * name already exists for the given type. */ void register_interceptor( Interceptor interceptor, int type ) throws DuplicateName { // If locked, deny any further addition of interceptors. if( locked ) { throw wrapper.interceptorListLocked() ; } // Cache interceptor name: String interceptorName = interceptor.name(); boolean anonymous = interceptorName.equals( "" ); boolean foundDuplicate = false; Interceptor[] interceptorList = interceptors[type]; // If this is not an anonymous interceptor, // search for an interceptor of the same name in this category: if( !anonymous ) { int size = interceptorList.length; // An O(n) search will suffice because register_interceptor is not // likely to be called often. for( int i = 0; i < size; i++ ) { Interceptor in = (Interceptor)interceptorList[i]; if( in.name().equals( interceptorName ) ) { foundDuplicate = true; break; } } } if( !foundDuplicate ) { growInterceptorArray( type ); interceptors[type][interceptors[type].length-1] = interceptor; } else { throw new DuplicateName( interceptorName ); } }
Example #30
Source Project: JDKSourceCode1.8 Author: wupeixuan File: ORBInitInfoImpl.java License: MIT License | 5 votes |
public void add_client_request_interceptor_with_policy ( ClientRequestInterceptor interceptor, Policy[] policies ) throws DuplicateName { // XXX ignore policies for now add_client_request_interceptor( interceptor ) ; }