Interface IProxyProp

All Known Implementing Classes:
ProxyPropCnr

public interface IProxyProp
The Interface used by Proxy Properties.
Author:
Christopher Mindus
  • Method Summary

    Modifier and Type
    Method
    Description
    <T> T
    getProxiedInterface(Class<T> interfaze)
    Checks if the proxied property is instance of an interface.
    Gets the "real" class name to use when sending the property over a transaction.
  • Method Details

    • getProxyClass

      Class<?> getProxyClass()
      Gets the "real" class name to use when sending the property over a transaction.
      Returns:
      The class name of the proxied class.
    • getProxiedInterface

      <T> T getProxiedInterface(Class<T> interfaze)
      Checks if the proxied property is instance of an interface.
      Parameters:
      interfaze - The interface.
      Returns:
      The proxy instance interface, or null if it is not implemented.