SelectStrategy.java 240 B

1234567891011121314
  1. package jnpf.util;
  2. import org.springframework.stereotype.Component;
  3. @Component
  4. public interface SelectStrategy {
  5. /**
  6. * 获取模式
  7. * @param strategy
  8. * @return
  9. */
  10. public String getStrategy(String strategy);
  11. }