Example usage for org.springframework.util ClassUtils getAllInterfacesAsSet

List of usage examples for org.springframework.util ClassUtils getAllInterfacesAsSet

Introduction

In this page you can find the example usage for org.springframework.util ClassUtils getAllInterfacesAsSet.

Prototype

public static Set<Class<?>> getAllInterfacesAsSet(Object instance) 

Source Link

Document

Return all interfaces that the given instance implements as a Set, including ones implemented by superclasses.

Usage

From source file:org.springframework.aop.support.IntroductionInfoSupport.java

protected void implementInterfacesOnObject(Object delegate) {
    this.publishedInterfaces.addAll(ClassUtils.getAllInterfacesAsSet(delegate));
}