Class ServerRegistryResourceProvider
- java.lang.Object
-
- org.linuxforhealth.fhir.registry.spi.AbstractRegistryResourceProvider
-
- org.linuxforhealth.fhir.server.registry.ServerRegistryResourceProvider
-
- All Implemented Interfaces:
FHIRRegistryResourceProvider
public class ServerRegistryResourceProvider extends AbstractRegistryResourceProvider
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
ALL_RESOURCE_TYPES
static java.util.logging.Logger
log
static CacheManager.Configuration
REGISTRY_RESOURCE_CACHE_CONFIGURATION
static java.lang.String
REGISTRY_RESOURCE_CACHE_NAME
-
Constructor Summary
Constructors Constructor Description ServerRegistryResourceProvider(PersistenceHelper persistenceHelper, SearchHelper searchHelper)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Collection<FHIRRegistryResource>
getProfileResources()
Get the profiles for all of the resources.java.util.Collection<FHIRRegistryResource>
getProfileResources(java.lang.String type)
Get the profile resources from this provider that constrain the given resource typejava.util.Collection<FHIRRegistryResource>
getRegistryResources()
Get all the registry resources from this providerjava.util.Collection<FHIRRegistryResource>
getRegistryResources(java.lang.Class<? extends Resource> resourceType)
Get the registry resources from this provider for the given resource typeprotected java.util.List<FHIRRegistryResource>
getRegistryResources(java.lang.Class<? extends Resource> resourceType, java.lang.String url)
Return a sorted list of FHIRRegistryResource with the passed canonical urljava.util.Collection<FHIRRegistryResource>
getSearchParameterResources(java.lang.String type)
Get the search parameter resources from this provider with the given search parameter type (e.g.-
Methods inherited from class org.linuxforhealth.fhir.registry.spi.AbstractRegistryResourceProvider
getRegistryResource, loadFromRegistry
-
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.linuxforhealth.fhir.registry.spi.FHIRRegistryResourceProvider
init
-
-
-
-
Field Detail
-
log
public static final java.util.logging.Logger log
-
REGISTRY_RESOURCE_CACHE_NAME
public static final java.lang.String REGISTRY_RESOURCE_CACHE_NAME
- See Also:
- Constant Field Values
-
REGISTRY_RESOURCE_CACHE_CONFIGURATION
public static final CacheManager.Configuration REGISTRY_RESOURCE_CACHE_CONFIGURATION
-
ALL_RESOURCE_TYPES
public static final java.lang.String ALL_RESOURCE_TYPES
-
-
Constructor Detail
-
ServerRegistryResourceProvider
public ServerRegistryResourceProvider(PersistenceHelper persistenceHelper, SearchHelper searchHelper)
-
-
Method Detail
-
getRegistryResources
protected java.util.List<FHIRRegistryResource> getRegistryResources(java.lang.Class<? extends Resource> resourceType, java.lang.String url)
Description copied from class:AbstractRegistryResourceProvider
Return a sorted list of FHIRRegistryResource with the passed canonical url- Specified by:
getRegistryResources
in classAbstractRegistryResourceProvider
url
- the canonical url for this resource (without version suffix)- Returns:
- a list of FHIRRegistryResources with this url, sorted from low to high by version
-
getRegistryResources
public java.util.Collection<FHIRRegistryResource> getRegistryResources(java.lang.Class<? extends Resource> resourceType)
Description copied from interface:FHIRRegistryResourceProvider
Get the registry resources from this provider for the given resource type- Specified by:
getRegistryResources
in interfaceFHIRRegistryResourceProvider
- Specified by:
getRegistryResources
in classAbstractRegistryResourceProvider
- Parameters:
resourceType
- the resource type of the registry resource- Returns:
- the registry resources from this provider for the given resource type; never null
-
getRegistryResources
public java.util.Collection<FHIRRegistryResource> getRegistryResources()
Description copied from interface:FHIRRegistryResourceProvider
Get all the registry resources from this provider- Specified by:
getRegistryResources
in interfaceFHIRRegistryResourceProvider
- Specified by:
getRegistryResources
in classAbstractRegistryResourceProvider
- Returns:
- all of the registry resources from this provider; never null
-
getProfileResources
public java.util.Collection<FHIRRegistryResource> getProfileResources()
Description copied from interface:FHIRRegistryResourceProvider
Get the profiles for all of the resources.- Returns:
- the profile resources from this provider that constrain the resource types
-
getProfileResources
public java.util.Collection<FHIRRegistryResource> getProfileResources(java.lang.String type)
Description copied from interface:FHIRRegistryResourceProvider
Get the profile resources from this provider that constrain the given resource type- Specified by:
getProfileResources
in interfaceFHIRRegistryResourceProvider
- Specified by:
getProfileResources
in classAbstractRegistryResourceProvider
- Parameters:
type
- the constrained resource type- Returns:
- the profile resources from this provider that constrain the given resource type; never null
-
getSearchParameterResources
public java.util.Collection<FHIRRegistryResource> getSearchParameterResources(java.lang.String type)
Description copied from interface:FHIRRegistryResourceProvider
Get the search parameter resources from this provider with the given search parameter type (e.g. string, token, etc.)- Specified by:
getSearchParameterResources
in interfaceFHIRRegistryResourceProvider
- Specified by:
getSearchParameterResources
in classAbstractRegistryResourceProvider
- Parameters:
type
- the search parameter type- Returns:
- the search parameter resources from this provider with the given search parameter type; never null
-
-