Package restx.jackson

Source Code of restx.jackson.FrontObjectMapperJSR310ModuleFactory

package restx.jackson;

import com.fasterxml.jackson.datatype.jsr310.JSR310Module;
import restx.factory.Module;
import restx.factory.Provides;

@Module
public class FrontObjectMapperJSR310ModuleFactory {

    @Provides
    public com.fasterxml.jackson.databind.Module jsr310Module() {
        return new JSR310Module();
    }

}
TOP

Related Classes of restx.jackson.FrontObjectMapperJSR310ModuleFactory

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.