forked from loafle/openapi-generator-original
* Fix issue #6867 : The apiPackage option is ignored in the template for Java Play Framework. * use openjdk7 in travis to ensure it works with jdk7
This commit is contained in:
committed by
William Cheng
parent
16e3226c8a
commit
ebf4efe3ea
@@ -0,0 +1,13 @@
|
||||
import com.google.inject.AbstractModule;
|
||||
|
||||
import com.puppies.store.apis.*;
|
||||
|
||||
public class Module extends AbstractModule {
|
||||
|
||||
@Override
|
||||
protected void configure() {
|
||||
bind(PetApiControllerImpInterface.class).to(PetApiControllerImp.class);
|
||||
bind(StoreApiControllerImpInterface.class).to(StoreApiControllerImp.class);
|
||||
bind(UserApiControllerImpInterface.class).to(UserApiControllerImp.class);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user