本文整理汇总了Java中org.omg.PortableInterceptor.IORInterceptor类的典型用法代码示例。如果您正苦于以下问题:Java IORInterceptor类的具体用法?Java IORInterceptor怎么用?Java IORInterceptor使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
IORInterceptor类属于org.omg.PortableInterceptor包,在下文中一共展示了IORInterceptor类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: adapterManagerStateChanged
import org.omg.PortableInterceptor.IORInterceptor; //导入依赖的package包/类
void adapterManagerStateChanged( int managerId, short newState )
{
if (enabled) {
IORInterceptor[] interceptors =
(IORInterceptor[])interceptorList.getInterceptors(
InterceptorList.INTERCEPTOR_TYPE_IOR );
int size = interceptors.length;
for( int i = (size - 1); i >= 0; i-- ) {
try {
IORInterceptor interceptor = interceptors[i];
if (interceptor instanceof IORInterceptor_3_0) {
IORInterceptor_3_0 interceptor30 = (IORInterceptor_3_0)interceptor ;
interceptor30.adapter_manager_state_changed( managerId,
newState );
}
} catch (Exception exc) {
// No-op: ignore exception in this case
}
}
}
}
示例2: adapterStateChanged
import org.omg.PortableInterceptor.IORInterceptor; //导入依赖的package包/类
void adapterStateChanged( ObjectReferenceTemplate[] templates,
short newState )
{
if (enabled) {
IORInterceptor[] interceptors =
(IORInterceptor[])interceptorList.getInterceptors(
InterceptorList.INTERCEPTOR_TYPE_IOR );
int size = interceptors.length;
for( int i = (size - 1); i >= 0; i-- ) {
try {
IORInterceptor interceptor = interceptors[i];
if (interceptor instanceof IORInterceptor_3_0) {
IORInterceptor_3_0 interceptor30 = (IORInterceptor_3_0)interceptor ;
interceptor30.adapter_state_changed( templates, newState );
}
} catch (Exception exc) {
// No-op: ignore exception in this case
}
}
}
}
示例3: add_ior_interceptor_with_policy
import org.omg.PortableInterceptor.IORInterceptor; //导入依赖的package包/类
public void add_ior_interceptor_with_policy (
IORInterceptor interceptor, Policy[] policies )
throws DuplicateName, PolicyError
{
// XXX ignore policies for now
add_ior_interceptor( interceptor ) ;
}
示例4: add_ior_interceptor
import org.omg.PortableInterceptor.IORInterceptor; //导入依赖的package包/类
/**
* 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 );
}
示例5: getIORInterceptors
import org.omg.PortableInterceptor.IORInterceptor; //导入依赖的package包/类
public IORInterceptor[] getIORInterceptors()
{
IORInterceptor[] iIor = new IORInterceptor[ m_ior.size() ];
for (int i = 0; i < iIor.length; i++)
{
iIor [ i ] = (IORInterceptor) m_ior.get(i);
}
return iIor;
}