* {@link javax.interceptor.InterceptorBinding} false otherwise
*/
public static boolean isInterceptorBindingAnnotation(Class<? extends Annotation> clazz)
{
Asserts.assertNotNull(clazz, "clazz parameter can not be null");
XMLAnnotationTypeManager manager = XMLAnnotationTypeManager.getInstance();
if (manager.isInterceptorBindingTypeExist(clazz))
{
return true;
}
else if (clazz.isAnnotationPresent(InterceptorBinding.class))
{