Interface ProxyFramework

All Known Implementing Classes:
ProxyFrameworkImpl

public interface ProxyFramework
The purpose of a the proxy framework implementation is to return the unproxied types of classes.
  • Method Summary

    Modifier and Type
    Method
    Description
    Check if the class is a proxy and if it is return the unproxied type.
    boolean
    isProxy(Class<?> type)
     
  • Method Details

    • getUnproxiedType

      Class<?> getUnproxiedType(Class<?> type)
      Check if the class is a proxy and if it is return the unproxied type.
      Parameters:
      type - The class to check.
      Returns:
      The unproxied class type.
    • isProxy

      boolean isProxy(Class<?> type)
      Returns:
      true if type is a proxy, false otherwise.