org.spincast.plugins.jacksonjson.JsonMixinInfo Maven / Gradle / Ivy
                 Go to download
                
        
                    Show more of this group  Show more artifacts with this name
Show all versions of spincast-plugins-jackson-json Show documentation
                Show all versions of spincast-plugins-jackson-json Show documentation
The default Spincast Jackson Json plugin
                
            package org.spincast.plugins.jacksonjson;
/**
 * An simple implementation of IJsonMixinInfo.
 */
public class JsonMixinInfo implements IJsonMixinInfo {
    private final Class> targetClass;
    private final Class> mixinClass;
    public JsonMixinInfo(Class> targetClass, Class> mixinClass) {
        this.targetClass = targetClass;
        this.mixinClass = mixinClass;
    }
    @Override
    public Class> getTargetClass() {
        return this.targetClass;
    }
    @Override
    public Class> getMixinClass() {
        return this.mixinClass;
    }
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy