dgleeson
09/05/2019, 7:05 PMclass KotlinWebService @Inject constructor(configuration: KotlinServiceConfiguration) : WebService(configuration.webServerPort, configuration.oidcBaseUrl)
that has mostly been working as expected. The problem I have is when I try to do something to the super during the init. e.g. init { super.setUnauthorizedUrls(setOf("/path")) }
I get java.lang.UnsupportedOperationException
. It seems like init is happening before injection. Does anyone have any ideas?Casey Brooks
09/05/2019, 7:19 PMdgleeson
09/05/2019, 10:06 PM