System.out.println();
System.out.println( " Registered interceptors: " );
System.out.println();
for ( int j = 0; j < interceptorConfigs.length; j++ )
{
final InterceptorConfig ic = interceptorConfigs[ j ];
System.out.println( " Name: " + ic.getName() );
System.out.println( " Class: " + ic.getClassName() );
System.out.println( " Direction: " + ic.getDirection() );
System.out.println();
}
}
if ( transportConfigs.length > 0 )