use of com.peterphi.std.guice.common.serviceprops.net.NetworkConfig in project stdlib by petergeneric.
the class ResourceGuiceModule method getTemplateNetworkConfig.
@Provides
@Named("template-config")
public NetworkConfig getTemplateNetworkConfig() {
NetworkConfig config = new NetworkConfig();
config.path = "/resource-templates";
config.properties = new GuiceConfig();
return config;
}
Aggregations