public Interceptor[] getInterceptors( )
throws PortletException
{
if ( _interceptors == null )
{
InterceptorFactoryService srv = ( InterceptorFactoryService ) getPortletContext( ).getService( InterceptorFactoryService.NAME );
Collection col = srv.getInterceptors( );
_interceptors = new Interceptor[ col.size( ) ];
Iterator it = col.iterator( );
for ( int i = 0; it.hasNext( ); i++ )
{