DynamicClientCreator.java 374 B

1234567891011121314151617
  1. package cn.nosum.support.proxy;
  2. /**
  3. * dynamic method client instance creator。
  4. *
  5. * @author Young
  6. */
  7. public abstract class DynamicClientCreator {
  8. /**
  9. * Create a dynamic method client instance
  10. *
  11. * @param target target object information
  12. * @return dynamic method client instance
  13. */
  14. public abstract <T> T newInstance(Target<T> target);
  15. }