Interface DomainManagerFactory
-
public interface DomainManagerFactoryA factory responsible for supplyingmanagersfor given domains. Implementations of this class must accept a given domain and return the appropriate manager instance for that domain.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DomainManagergetManagerForDomain(String domain)Get theDomainManagerfor the given domain.
-
-
-
Method Detail
-
getManagerForDomain
DomainManager getManagerForDomain(String domain)
Get theDomainManagerfor the given domain. Domains must consist of only alphanumeric characters and '.-_'.- Parameters:
domain- the domain- Returns:
- the manager
-
-