All Downloads are FREE. Search and download functionalities are using the official Maven repository.

JavaPlayFramework.module.mustache Maven / Gradle / Ivy

There is a newer version: 7.6.0
Show newest version
import com.google.inject.AbstractModule;

import {{apiPackage}}.*;
import openapitools.SecurityAPIUtils;

public class Module extends AbstractModule {

    @Override
    protected void configure() {
        {{#apiInfo}}
        {{#apis}}
        bind({{classname}}ControllerImpInterface.class).to({{classname}}ControllerImp.class);
        {{/apis}}
        {{/apiInfo}}
        bind(SecurityAPIUtils.class);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy