()
| 40 | abstract class VirtualHost { |
| 41 | // The canonical name of this virtual host. |
| 42 | abstract String name(); |
| 43 | |
| 44 | // The list of domains (host/authority header) that will be matched to this virtual host. |
| 45 | abstract ImmutableList<String> domains(); |
no outgoing calls