|
|
|
@ -9,9 +9,9 @@ package ca.uhn.fhir.model.api;
|
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
@ -19,18 +19,6 @@ package ca.uhn.fhir.model.api;
|
|
|
|
|
* limitations under the License.
|
|
|
|
|
* #L%
|
|
|
|
|
*/
|
|
|
|
|
import static org.apache.commons.lang3.StringUtils.isNotBlank;
|
|
|
|
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
import java.util.Collections;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
|
|
import org.hl7.fhir.instance.model.api.IAnyResource;
|
|
|
|
|
import org.hl7.fhir.instance.model.api.IPrimitiveType;
|
|
|
|
|
|
|
|
|
|
import ca.uhn.fhir.model.base.composite.BaseCodingDt;
|
|
|
|
|
import ca.uhn.fhir.model.primitive.DecimalDt;
|
|
|
|
@ -39,6 +27,14 @@ import ca.uhn.fhir.model.primitive.InstantDt;
|
|
|
|
|
import ca.uhn.fhir.model.valueset.BundleEntrySearchModeEnum;
|
|
|
|
|
import ca.uhn.fhir.model.valueset.BundleEntryTransactionMethodEnum;
|
|
|
|
|
import ca.uhn.fhir.rest.server.exceptions.InternalErrorException;
|
|
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
|
|
import org.hl7.fhir.instance.model.api.IAnyResource;
|
|
|
|
|
import org.hl7.fhir.instance.model.api.IPrimitiveType;
|
|
|
|
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
import java.util.*;
|
|
|
|
|
|
|
|
|
|
import static org.apache.commons.lang3.StringUtils.isNotBlank;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Keys in this map refer to <b>resource metadata keys</b>, which are keys used to access information about specific resource instances that live outside of the resource body. Typically, these are
|
|
|
|
@ -64,8 +60,6 @@ import ca.uhn.fhir.rest.server.exceptions.InternalErrorException;
|
|
|
|
|
*/
|
|
|
|
|
public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* If present and populated with a date/time (as an instance of {@link InstantDt}), this value is an indication that the resource is in the deleted state. This key is only used in a limited number
|
|
|
|
|
* of scenarios, such as POSTing transaction bundles to a server, or returning resource history.
|
|
|
|
@ -81,23 +75,22 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
return getInstantFromMetadataOrNullIfNone(theResource.getResourceMetadata(), DELETED_AT);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void put(IResource theResource, InstantDt theObject) {
|
|
|
|
|
theResource.getResourceMetadata().put(DELETED_AT, theObject);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
|
@Override
|
|
|
|
|
public IPrimitiveType<Date> get(IAnyResource theResource) {
|
|
|
|
|
return (IPrimitiveType<Date>) theResource.getUserData(DELETED_AT.name());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void put(IResource theResource, InstantDt theObject) {
|
|
|
|
|
theResource.getResourceMetadata().put(DELETED_AT, theObject);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void put(IAnyResource theResource, IPrimitiveType<Date> theObject) {
|
|
|
|
|
theResource.setUserData(DELETED_AT.name(), theObject);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Denotes the search score which a given resource should match in a transaction. See the FHIR transaction definition for information about this. Corresponds to the value in
|
|
|
|
|
* <code>Bundle.entry.score</code> in a Bundle resource.
|
|
|
|
@ -121,7 +114,6 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
theResource.getResourceMetadata().put(ENTRY_SCORE, theObject);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* If present and populated with a {@link BundleEntrySearchModeEnum}, contains the "bundle entry search mode", which is the value of the status field in the Bundle entry containing this resource.
|
|
|
|
|
* The value for this key corresponds to field <code>Bundle.entry.search.mode</code>. This value can be set to provide a status value of "include" for included resources being returned by a
|
|
|
|
@ -135,27 +127,27 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
*/
|
|
|
|
|
public static final ResourceMetadataKeySupportingAnyResource<BundleEntrySearchModeEnum, String> ENTRY_SEARCH_MODE = new ResourceMetadataKeySupportingAnyResource<BundleEntrySearchModeEnum, String>("ENTRY_SEARCH_MODE") {
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public BundleEntrySearchModeEnum get(IResource theResource) {
|
|
|
|
|
return getEnumFromMetadataOrNullIfNone(theResource.getResourceMetadata(), ENTRY_SEARCH_MODE, BundleEntrySearchModeEnum.class, BundleEntrySearchModeEnum.VALUESET_BINDER);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void put(IResource theResource, BundleEntrySearchModeEnum theObject) {
|
|
|
|
|
theResource.getResourceMetadata().put(ENTRY_SEARCH_MODE, theObject);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String get(IAnyResource theResource) {
|
|
|
|
|
return (String) theResource.getUserData(ENTRY_SEARCH_MODE.name());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void put(IResource theResource, BundleEntrySearchModeEnum theObject) {
|
|
|
|
|
theResource.getResourceMetadata().put(ENTRY_SEARCH_MODE, theObject);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void put(IAnyResource theResource, String theObject) {
|
|
|
|
|
theResource.setUserData(ENTRY_SEARCH_MODE.name(), theObject);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* If present and populated with a {@link BundleEntryTransactionMethodEnum}, contains the "bundle entry transaction operation", which is the value of the status field in the Bundle entry
|
|
|
|
|
* containing this resource. The value for this key corresponds to field <code>Bundle.entry.transaction.operation</code>. This value can be set in resources being transmitted to a server to
|
|
|
|
@ -169,18 +161,13 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
* </p>
|
|
|
|
|
*/
|
|
|
|
|
public static final ResourceMetadataKeySupportingAnyResource<BundleEntryTransactionMethodEnum, String> ENTRY_TRANSACTION_METHOD = new ResourceMetadataKeySupportingAnyResource<BundleEntryTransactionMethodEnum, String>(
|
|
|
|
|
"ENTRY_TRANSACTION_OPERATION") {
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
"ENTRY_TRANSACTION_OPERATION") {
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public BundleEntryTransactionMethodEnum get(IResource theResource) {
|
|
|
|
|
return getEnumFromMetadataOrNullIfNone(theResource.getResourceMetadata(), ENTRY_TRANSACTION_METHOD, BundleEntryTransactionMethodEnum.class,
|
|
|
|
|
BundleEntryTransactionMethodEnum.VALUESET_BINDER);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void put(IResource theResource, BundleEntryTransactionMethodEnum theObject) {
|
|
|
|
|
theResource.getResourceMetadata().put(ENTRY_TRANSACTION_METHOD, theObject);
|
|
|
|
|
BundleEntryTransactionMethodEnum.VALUESET_BINDER);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@ -188,13 +175,17 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
return (String) theResource.getUserData(ENTRY_TRANSACTION_METHOD.name());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void put(IResource theResource, BundleEntryTransactionMethodEnum theObject) {
|
|
|
|
|
theResource.getResourceMetadata().put(ENTRY_TRANSACTION_METHOD, theObject);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void put(IAnyResource theResource, String theObject) {
|
|
|
|
|
theResource.setUserData(ENTRY_TRANSACTION_METHOD.name(), theObject);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
/**
|
|
|
|
|
* If present and populated with a string, provides the "alternate link" (the link element in the bundle entry with <code>rel="alternate"</code>). Server implementations may populate this with a
|
|
|
|
|
* complete URL, in which case the URL will be placed as-is in the bundle. They may alternately specify a resource relative URL (e.g. "Patient/1243") in which case the server will convert this to
|
|
|
|
@ -205,6 +196,7 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
*/
|
|
|
|
|
public static final ResourceMetadataKeyEnum<String> LINK_ALTERNATE = new ResourceMetadataKeyEnum<String>("LINK_ALTERNATE") {
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String get(IResource theResource) {
|
|
|
|
|
return getStringFromMetadataOrNullIfNone(theResource.getResourceMetadata(), LINK_ALTERNATE);
|
|
|
|
@ -215,7 +207,6 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
theResource.getResourceMetadata().put(LINK_ALTERNATE, theObject);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* If present and populated with a string, provides the "search link" (the link element in the bundle entry with <code>rel="search"</code>). Server implementations may populate this with a
|
|
|
|
|
* complete URL, in which case the URL will be placed as-is in the bundle. They may alternately specify a resource relative URL (e.g. "Patient?name=tester") in which case the server will convert
|
|
|
|
@ -226,6 +217,7 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
*/
|
|
|
|
|
public static final ResourceMetadataKeyEnum<String> LINK_SEARCH = new ResourceMetadataKeyEnum<String>("LINK_SEARCH") {
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String get(IResource theResource) {
|
|
|
|
|
return getStringFromMetadataOrNullIfNone(theResource.getResourceMetadata(), LINK_SEARCH);
|
|
|
|
@ -236,7 +228,6 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
theResource.getResourceMetadata().put(LINK_SEARCH, theObject);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The value for this key represents a previous ID used to identify this resource. This key is currently only used internally during transaction method processing.
|
|
|
|
|
* <p>
|
|
|
|
@ -245,6 +236,7 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
*/
|
|
|
|
|
public static final ResourceMetadataKeyEnum<IdDt> PREVIOUS_ID = new ResourceMetadataKeyEnum<IdDt>("PREVIOUS_ID") {
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public IdDt get(IResource theResource) {
|
|
|
|
|
return getIdFromMetadataOrNullIfNone(theResource.getResourceMetadata(), PREVIOUS_ID);
|
|
|
|
@ -255,16 +247,16 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
theResource.getResourceMetadata().put(PREVIOUS_ID, theObject);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The value for this key represents a {@link List} of profile IDs that this resource claims to conform to.
|
|
|
|
|
*
|
|
|
|
|
* <p>
|
|
|
|
|
* <p>
|
|
|
|
|
* Values for this key are of type <b>List<IdDt></b>. Note that the returned list is <i>unmodifiable</i>, so you need to create a new list and call <code>put</code> to change its value.
|
|
|
|
|
* </p>
|
|
|
|
|
*/
|
|
|
|
|
public static final ResourceMetadataKeyEnum<List<IdDt>> PROFILES = new ResourceMetadataKeyEnum<List<IdDt>>("PROFILES") {
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public List<IdDt> get(IResource theResource) {
|
|
|
|
|
return getIdListFromMetadataOrNullIfNone(theResource.getResourceMetadata(), PROFILES);
|
|
|
|
@ -275,7 +267,6 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
theResource.getResourceMetadata().put(PROFILES, theObject);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The value for this key is the bundle entry <b>Published</b> time. This is defined by FHIR as "Time resource copied into the feed", which is generally best left to the current time.
|
|
|
|
|
* <p>
|
|
|
|
@ -284,11 +275,12 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
* <p>
|
|
|
|
|
* <b>Server Note</b>: In servers, it is generally advisable to leave this value <code>null</code>, in which case the server will substitute the current time automatically.
|
|
|
|
|
* </p>
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @see InstantDt
|
|
|
|
|
*/
|
|
|
|
|
public static final ResourceMetadataKeyEnum<InstantDt> PUBLISHED = new ResourceMetadataKeyEnum<InstantDt>("PUBLISHED") {
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public InstantDt get(IResource theResource) {
|
|
|
|
|
return getInstantFromMetadataOrNullIfNone(theResource.getResourceMetadata(), PUBLISHED);
|
|
|
|
@ -299,9 +291,9 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
theResource.getResourceMetadata().put(PUBLISHED, theObject);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public static final ResourceMetadataKeyEnum<List<BaseCodingDt>> SECURITY_LABELS = new ResourceMetadataKeyEnum<List<BaseCodingDt>>("SECURITY_LABELS") {
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public List<BaseCodingDt> get(IResource resource) {
|
|
|
|
|
Object obj = resource.getResourceMetadata().get(SECURITY_LABELS);
|
|
|
|
@ -317,7 +309,7 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
return securityLabels;
|
|
|
|
|
} catch (ClassCastException e) {
|
|
|
|
|
throw new InternalErrorException("Found an object of type '" + obj.getClass().getCanonicalName() + "' in resource metadata for key SECURITY_LABELS - Expected "
|
|
|
|
|
+ BaseCodingDt.class.getCanonicalName());
|
|
|
|
|
+ BaseCodingDt.class.getCanonicalName());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
@ -328,17 +320,17 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The value for this key is the list of tags associated with this resource
|
|
|
|
|
* <p>
|
|
|
|
|
* Values for this key are of type <b>{@link TagList}</b>
|
|
|
|
|
* </p>
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @see TagList
|
|
|
|
|
*/
|
|
|
|
|
public static final ResourceMetadataKeyEnum<TagList> TAG_LIST = new ResourceMetadataKeyEnum<TagList>("TAG_LIST") {
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public TagList get(IResource theResource) {
|
|
|
|
|
Object retValObj = theResource.getResourceMetadata().get(TAG_LIST);
|
|
|
|
@ -351,7 +343,7 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
return (TagList) retValObj;
|
|
|
|
|
}
|
|
|
|
|
throw new InternalErrorException("Found an object of type '" + retValObj.getClass().getCanonicalName() + "' in resource metadata for key " + TAG_LIST.name() + " - Expected "
|
|
|
|
|
+ TagList.class.getCanonicalName());
|
|
|
|
|
+ TagList.class.getCanonicalName());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@ -359,7 +351,6 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
theResource.getResourceMetadata().put(TAG_LIST, theObject);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* If present and populated with a string (as an instance of {@link String}), this value contains the title for this resource, as supplied in any bundles containing the resource.
|
|
|
|
|
* <p>
|
|
|
|
@ -368,6 +359,7 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
*/
|
|
|
|
|
public static final ResourceMetadataKeyEnum<String> TITLE = new ResourceMetadataKeyEnum<String>("TITLE") {
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String get(IResource theResource) {
|
|
|
|
|
return getStringFromMetadataOrNullIfNone(theResource.getResourceMetadata(), TITLE);
|
|
|
|
@ -378,18 +370,18 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
theResource.getResourceMetadata().put(TITLE, theObject);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The value for this key is the bundle entry <b>Updated</b> time. This is defined by FHIR as "Last Updated for resource". This value is also used for populating the "Last-Modified" header in the
|
|
|
|
|
* case of methods that return a single resource (read, vread, etc.)
|
|
|
|
|
* <p>
|
|
|
|
|
* Values for this key are of type <b>{@link InstantDt}</b>
|
|
|
|
|
* </p>
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @see InstantDt
|
|
|
|
|
*/
|
|
|
|
|
public static final ResourceMetadataKeyEnum<InstantDt> UPDATED = new ResourceMetadataKeyEnum<InstantDt>("UPDATED") {
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public InstantDt get(IResource theResource) {
|
|
|
|
|
return getInstantFromMetadataOrNullIfNone(theResource.getResourceMetadata(), UPDATED);
|
|
|
|
@ -400,7 +392,6 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
theResource.getResourceMetadata().put(UPDATED, theObject);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The value for this key is the version ID of the resource object.
|
|
|
|
|
* <p>
|
|
|
|
@ -409,6 +400,7 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
*/
|
|
|
|
|
public static final ResourceMetadataKeyEnum<String> VERSION = new ResourceMetadataKeyEnum<String>("VERSION") {
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String get(IResource theResource) {
|
|
|
|
|
return getStringFromMetadataOrNullIfNone(theResource.getResourceMetadata(), VERSION);
|
|
|
|
@ -419,18 +411,18 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
theResource.getResourceMetadata().put(VERSION, theObject);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The value for this key is the version ID of the resource object.
|
|
|
|
|
* <p>
|
|
|
|
|
* Values for this key are of type <b>{@link IdDt}</b>
|
|
|
|
|
* </p>
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @deprecated The {@link IResource#getId()} resource ID will now be populated with the version ID via the {@link IdDt#getVersionIdPart()} method
|
|
|
|
|
*/
|
|
|
|
|
@Deprecated
|
|
|
|
|
public static final ResourceMetadataKeyEnum<IdDt> VERSION_ID = new ResourceMetadataKeyEnum<IdDt>("VERSION_ID") {
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public IdDt get(IResource theResource) {
|
|
|
|
|
return getIdFromMetadataOrNullIfNone(theResource.getResourceMetadata(), VERSION_ID);
|
|
|
|
@ -441,7 +433,7 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
theResource.getResourceMetadata().put(VERSION_ID, theObject);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
private final String myValue;
|
|
|
|
|
|
|
|
|
|
public ResourceMetadataKeyEnum(String theValue) {
|
|
|
|
@ -504,12 +496,12 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
return new DecimalDt((Double) retValObj);
|
|
|
|
|
}
|
|
|
|
|
throw new InternalErrorException("Found an object of type '" + retValObj.getClass().getCanonicalName() + "' in resource metadata for key " + theKey.name() + " - Expected "
|
|
|
|
|
+ InstantDt.class.getCanonicalName());
|
|
|
|
|
+ InstantDt.class.getCanonicalName());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
|
private static <T extends Enum<?>> T getEnumFromMetadataOrNullIfNone(Map<ResourceMetadataKeyEnum<?>, Object> theResourceMetadata, ResourceMetadataKeyEnum<T> theKey, Class<T> theEnumType,
|
|
|
|
|
IValueSetEnumBinder<T> theBinder) {
|
|
|
|
|
IValueSetEnumBinder<T> theBinder) {
|
|
|
|
|
Object retValObj = theResourceMetadata.get(theKey);
|
|
|
|
|
if (retValObj == null) {
|
|
|
|
|
return null;
|
|
|
|
@ -519,7 +511,7 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
return theBinder.fromCodeString((String) retValObj);
|
|
|
|
|
}
|
|
|
|
|
throw new InternalErrorException("Found an object of type '" + retValObj.getClass().getCanonicalName() + "' in resource metadata for key " + theKey.name() + " - Expected "
|
|
|
|
|
+ InstantDt.class.getCanonicalName());
|
|
|
|
|
+ InstantDt.class.getCanonicalName());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static IdDt getIdFromMetadataOrNullIfNone(Map<ResourceMetadataKeyEnum<?>, Object> theResourceMetadata, ResourceMetadataKeyEnum<?> theKey) {
|
|
|
|
@ -558,11 +550,11 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
} else if (retValObj instanceof InstantDt) {
|
|
|
|
|
if (((InstantDt) retValObj).isEmpty()) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return (InstantDt) retValObj;
|
|
|
|
|
}
|
|
|
|
|
throw new InternalErrorException("Found an object of type '" + retValObj.getClass().getCanonicalName() + "' in resource metadata for key " + theKey.name() + " - Expected "
|
|
|
|
|
+ InstantDt.class.getCanonicalName());
|
|
|
|
|
+ InstantDt.class.getCanonicalName());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static String getStringFromMetadataOrNullIfNone(Map<ResourceMetadataKeyEnum<?>, Object> theResourceMetadata, ResourceMetadataKeyEnum<String> theKey) {
|
|
|
|
@ -572,11 +564,11 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
} else if (retValObj instanceof String) {
|
|
|
|
|
if (StringUtils.isBlank(((String) retValObj))) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return (String) retValObj;
|
|
|
|
|
}
|
|
|
|
|
throw new InternalErrorException("Found an object of type '" + retValObj.getClass().getCanonicalName() + "' in resource metadata for key " + theKey.name() + " - Expected "
|
|
|
|
|
+ String.class.getCanonicalName());
|
|
|
|
|
+ String.class.getCanonicalName());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static IdDt toId(ResourceMetadataKeyEnum<?> theKey, Object retValObj) {
|
|
|
|
@ -596,22 +588,21 @@ public abstract class ResourceMetadataKeyEnum<T> implements Serializable {
|
|
|
|
|
return new IdDt(((Number) retValObj).toString());
|
|
|
|
|
}
|
|
|
|
|
throw new InternalErrorException("Found an object of type '" + retValObj.getClass().getCanonicalName() + "' in resource metadata for key " + theKey.name() + " - Expected "
|
|
|
|
|
+ IdDt.class.getCanonicalName());
|
|
|
|
|
+ IdDt.class.getCanonicalName());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static abstract class ResourceMetadataKeySupportingAnyResource<T, T2> extends ResourceMetadataKeyEnum<T> {
|
|
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
public ResourceMetadataKeySupportingAnyResource(String theValue) {
|
|
|
|
|
super(theValue);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public abstract T2 get(IAnyResource theResource);
|
|
|
|
|
|
|
|
|
|
public abstract void put(IAnyResource theResource, T2 theObject);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|