Details
-
Task
-
Status: Closed
-
Major
-
Resolution: Won't Fix
-
None
-
None
Description
internally we are using the typesafe approach - e.g.:
@Inject
private ConfigResolver configResolver;
//...
this.configResolver.resolve(WindowContextConfig.class).getWindowContextTimeoutInMinutes();
we have to eval the support for the following syntax for using it in an application:
example:
@Inject
@Config(WindowContextConfig.class)
private Integer conversationTimeoutInMinutes;