Interface ContentDomainRegistry
-
public interface ContentDomainRegistry
The Interface ContentDomainRegistry.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ContentDomain<?>
getByDomainPrefix(String domainPrefix)
Gets theContentDomain
by prefix.List<ContentDomain<?>>
getBySupportedClass(Class<?> clazz)
Gets the list of registeredContentDomain
services that support of specificclass
.List<ContentDomain<?>>
getContentDomains()
Gets the list of all registeredContentDomain
services.
-
-
-
Method Detail
-
getContentDomains
List<ContentDomain<?>> getContentDomains()
Gets the list of all registeredContentDomain
services.- Returns:
- a list of
ContentDomain
, may benull
-
getByDomainPrefix
ContentDomain<?> getByDomainPrefix(String domainPrefix)
Gets theContentDomain
by prefix.- Parameters:
domainPrefix
- the domain prefix, to retrieve theContentDomain
for, may benull
.- Returns:
- the
ContentDomain
.
-
getBySupportedClass
List<ContentDomain<?>> getBySupportedClass(Class<?> clazz)
Gets the list of registeredContentDomain
services that support of specificclass
.- Parameters:
clazz
- theclass
to check for matching domains, may not benull
.- Returns:
- a list of
ContentDomain
, may benull
-
-