public JsonService addAdapter()

in jackson/src/java/org/apache/fulcrum/json/jackson/JacksonMapperService.java [339:345]


    public JsonService addAdapter(String name, Class target, Class mixin)
            throws Exception {
        Module mx = new MixinModule(name, target, mixin);
        getLogger().debug("registering module " + mx + "  for: " + mixin);
        mapper.withModule(mx);
        return this;
    }