Package com.ibm.fhir.registry.resource
Class FHIRRegistryResource
- java.lang.Object
-
- com.ibm.fhir.registry.resource.FHIRRegistryResource
-
- All Implemented Interfaces:
Comparable<FHIRRegistryResource>
- Direct Known Subclasses:
PackageRegistryResource
public class FHIRRegistryResource extends Object implements Comparable<FHIRRegistryResource>
A base class that contains the metadata for a definitional resource (e.g. StructureDefinition)
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classFHIRRegistryResource.VersionRepresents a version that can either be lexical or follow the Semantic Versioning format
-
Field Summary
Fields Modifier and Type Field Description protected Stringidprotected Stringkindstatic FHIRRegistryResource.VersionNO_VERSIONprotected Resourceresourceprotected Class<? extends Resource>resourceTypeprotected Stringtypeprotected Stringurlprotected FHIRRegistryResource.Versionversion
-
Constructor Summary
Constructors Constructor Description FHIRRegistryResource(Class<? extends Resource> resourceType, String id, String url, FHIRRegistryResource.Version version, String kind, String type)FHIRRegistryResource(Class<? extends Resource> resourceType, String id, String url, FHIRRegistryResource.Version version, String kind, String type, Resource resource)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description <T extends FHIRRegistryResource>
Tas(Class<T> registryResourceType)intcompareTo(FHIRRegistryResource other)booleanequals(Object obj)static FHIRRegistryResourcefrom(Resource resource)StringgetId()StringgetKind()ResourcegetResource()Class<? extends Resource>getResourceType()StringgetType()StringgetUrl()FHIRRegistryResource.VersiongetVersion()inthashCode()<T extends FHIRRegistryResource>
booleanis(Class<T> registryResourceType)
-
-
-
Field Detail
-
NO_VERSION
public static final FHIRRegistryResource.Version NO_VERSION
-
id
protected final String id
-
url
protected final String url
-
version
protected final FHIRRegistryResource.Version version
-
kind
protected final String kind
-
type
protected final String type
-
resource
protected volatile Resource resource
-
-
Method Detail
-
getId
public String getId()
-
getUrl
public String getUrl()
-
getVersion
public FHIRRegistryResource.Version getVersion()
-
getKind
public String getKind()
-
getType
public String getType()
-
getResource
public Resource getResource()
-
is
public <T extends FHIRRegistryResource> boolean is(Class<T> registryResourceType)
-
as
public <T extends FHIRRegistryResource> T as(Class<T> registryResourceType)
-
compareTo
public int compareTo(FHIRRegistryResource other)
- Specified by:
compareToin interfaceComparable<FHIRRegistryResource>
-
from
public static FHIRRegistryResource from(Resource resource)
-
-