.build();
return new UserAgentReaperHandler(simplePushServer(config));
}
private SimplePushServer simplePushServer(final SimplePushServerConfig config) {
final DataStore store = new InMemoryDataStore();
final byte[] privateKey = DefaultSimplePushServer.generateAndStorePrivateKey(store, config);
return new DefaultSimplePushServer(store, config, privateKey);
}