|
Hey Ron,
Can you please test this out using latest SNAPSHOT version ? Best would be if you build upstream/master, 2.7.0-SNAPSHOT. Otherwise you may try to use a SNAPSHOT from JBoss Nexus, which I just deployed containing the necessary changes.
In order to define the scope you just need to provide a configuration as follows:
public void onInit(@Observes SecurityConfigurationEvent event) {
SecurityConfigurationBuilder builder = event.getBuilder();
builder
.identity()
.scope(WindowScoped.class);
}
Regards.
|