All Downloads are FREE. Search and download functionalities are using the official Maven repository.

im.aop.loggers.messageinterpolation.ToStringStrategy Maven / Gradle / Ivy

Go to download

A handy and configurable sets of annotation-based loggers for Spring Boot that can log every execution of a method when entering or exiting normally or abnormally, without you writing a single line of code using aspect-oriented programming (AOP)

The newest version!
package im.aop.loggers.messageinterpolation;

/**
 * {@link Object#toString()} strategy interface used by {@link StringSupplierRegistrar} to supply
 * String value.
 *
 * @author Andy Lian
 */
public interface ToStringStrategy {

  /**
   * Does not check for null instance.
   *
   * @param object
   * @return
   */
  boolean supports(Object object);

  String toString(Object object);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy