(
String name, List<String> domains, List<Route> routes,
Map<String, FilterConfig> filterConfigOverrides)
| 50 | abstract ImmutableMap<String, FilterConfig> filterConfigOverrides(); |
| 51 | |
| 52 | public static VirtualHost create( |
| 53 | String name, List<String> domains, List<Route> routes, |
| 54 | Map<String, FilterConfig> filterConfigOverrides) { |
| 55 | return new AutoValue_VirtualHost(name, ImmutableList.copyOf(domains), |
| 56 | ImmutableList.copyOf(routes), ImmutableMap.copyOf(filterConfigOverrides)); |
| 57 | } |
| 58 | |
| 59 | @AutoValue |
| 60 | abstract static class Route { |
no outgoing calls