Alessandro Scarozza

Results 30 comments of Alessandro Scarozza

I think the situation is significantly worse: the Multiple back stacks is completely broken. example 1: if I am in a second level of the first tab and I deeplink...

in this cases i change DB name :)

@samtstern I have used this library for years due to its simplicity. with the new api "registerForActivityResult" I found a way to simplify it further. I'd love to have your...

@samtstern sorry, i renamed the file. just updated previous post this system not use annotation to intercept callback, use livedata. i don't know, how to integrate with easypermission. i linked...

@samtstern any review?

in this way i need to register manually with addFilterBefore? only with your bean i receive: ``` 2018-07-27 14:23:42.834 INFO 18245 --- [ost-startStop-1] o.s.boot.web.servlet.RegistrationBean : Filter awsCognitoJwtAuthenticationFilter was not registered...

with this configuration all works fine but i don't know if this is a correct way ``` @Configuration public class HcaWebSecurityConfigurerAdapter extends WebSecurityConfigurerAdapter { @Autowired private AwsCognitoJwtAuthenticationFilter awsCognitoJwtAuthenticationFilter; @Autowired private...

"disable the filter registration by default" i think is the correct coice i have a question about: ``` .addFilterBefore(awsCognitoJwtAuthenticationFilter, UsernamePasswordAuthenticationFilter.class) .addFilterBefore(new MyHlJwtAuthenticationFilter(), UsernamePasswordAuthenticationFilter.class) ``` i put aws and custom filter...

sorry seams something wrong before, now works just i receive 2 invocation per fiter: ``` @Configuration public class HcaWebSecurityConfigurerAdapter extends WebSecurityConfigurerAdapter { @Autowired private AwsCognitoJwtAuthenticationFilter awsCognitoJwtAuthenticationFilter; @Autowired private MyHlJwtAuthenticationFilter myHlJwtAuthenticationFilter;...

@ddewaele also with only your filter using FilterRegistrationBean (enabled false) and addFilterBefore i receive 2 invocation. another question are you sure to extends GenericFilterBean and not AbstractAuthenticationProcessingFilter ?