mirror of
https://github.com/jetty/jetty.project.git
synced 2025-02-23 16:05:00 +00:00
* Allow to pass instances of ClientConfig and Config to Hazelcast data store factory This increases flexibility when configuring it programmatically. Patterns such as HazelcastSessionDataStoreFactory f = new HazelcastSessionDataStoreFactory(); f.setOnlyClient(true); f.setClientConfig(ClientConfig.load()); or HazelcastSessionDataStoreFactory f = new HazelcastSessionDataStoreFactory(); f.setServerConfig(Config.load()); can then be used to configure Hazelcast according to standard Hazelcast locations if needed. Co-authored-by: Jesse Glick <jglick@cloudbees.com>