Example usage for org.apache.ibatis.reflection.wrapper ObjectWrapperFactory interface-usage

List of usage examples for org.apache.ibatis.reflection.wrapper ObjectWrapperFactory interface-usage

Introduction

In this page you can find the example usage for org.apache.ibatis.reflection.wrapper ObjectWrapperFactory interface-usage.

Usage

From source file domain.misc.CustomBeanWrapperFactory.java

public class CustomBeanWrapperFactory implements ObjectWrapperFactory {
    public boolean hasWrapperFor(Object object) {
        if (object instanceof Author) {
            return true;
        } else {
            return false;