| .. | .. |
|---|
| 1 | 1 | package net.curisit.securis.ioc; |
|---|
| 2 | 2 | |
|---|
| 3 | +import net.curisit.securis.services.ApplicationResource; |
|---|
| 3 | 4 | import net.curisit.securis.services.BasicServices; |
|---|
| 4 | 5 | import net.curisit.securis.services.LicenseServices; |
|---|
| 5 | 6 | import net.curisit.securis.services.SecurityInterceptor; |
|---|
| .. | .. |
|---|
| 17 | 18 | @Override |
|---|
| 18 | 19 | protected void configure() { |
|---|
| 19 | 20 | super.configure(); |
|---|
| 21 | + // TODO: Make the bind using reflection dynamically |
|---|
| 20 | 22 | bind(BasicServices.class); |
|---|
| 21 | 23 | bind(LicenseServices.class); |
|---|
| 22 | 24 | bind(UserResource.class); |
|---|
| 25 | + bind(ApplicationResource.class); |
|---|
| 23 | 26 | bind(SecurityInterceptor.class); |
|---|
| 24 | 27 | |
|---|
| 25 | 28 | } |
|---|