Open Source Repository

Home /ibatis/ibatis-sqlmap-3.0-beta8 | Repository Home



org/apache/ibatis/plugin/Interceptor.java
package org.apache.ibatis.plugin;

import java.util.Properties;

public interface Interceptor {

  Object intercept(Invocation invocationthrows Throwable;

  Object plugin(Object target);

  void setProperties(Properties properties);

}