
org.hl7.fhir.dstu3.model.CapabilityStatement Maven / Gradle / Ivy
The newest version!
package org.hl7.fhir.dstu3.model;
/*
Copyright (c) 2011+, HL7, Inc.
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of HL7 nor the names of its contributors may be used to
endorse or promote products derived from this software without specific
prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
// Generated on Fri, Mar 16, 2018 15:21+1100 for FHIR v3.0.x
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import org.hl7.fhir.dstu3.model.Enumerations.PublicationStatus;
import org.hl7.fhir.dstu3.model.Enumerations.PublicationStatusEnumFactory;
import org.hl7.fhir.dstu3.model.Enumerations.SearchParamType;
import org.hl7.fhir.dstu3.model.Enumerations.SearchParamTypeEnumFactory;
import org.hl7.fhir.exceptions.FHIRException;
import org.hl7.fhir.instance.model.api.IBaseBackboneElement;
import org.hl7.fhir.instance.model.api.IBaseConformance;
import org.hl7.fhir.utilities.Utilities;
import ca.uhn.fhir.model.api.annotation.Block;
import ca.uhn.fhir.model.api.annotation.Child;
import ca.uhn.fhir.model.api.annotation.ChildOrder;
import ca.uhn.fhir.model.api.annotation.Description;
import ca.uhn.fhir.model.api.annotation.ResourceDef;
import ca.uhn.fhir.model.api.annotation.SearchParamDefinition;
/**
* A Capability Statement documents a set of capabilities (behaviors) of a FHIR Server that may be used as a statement of actual server functionality or a statement of required or desired server implementation.
*/
@ResourceDef(name="CapabilityStatement", profile="http://hl7.org/fhir/Profile/CapabilityStatement")
@ChildOrder(names={"url", "version", "name", "title", "status", "experimental", "date", "publisher", "contact", "description", "useContext", "jurisdiction", "purpose", "copyright", "kind", "instantiates", "software", "implementation", "fhirVersion", "acceptUnknown", "format", "patchFormat", "implementationGuide", "profile", "rest", "messaging", "document"})
public class CapabilityStatement extends MetadataResource implements IBaseConformance {
public enum CapabilityStatementKind {
/**
* The CapabilityStatement instance represents the present capabilities of a specific system instance. This is the kind returned by OPTIONS for a FHIR server end-point.
*/
INSTANCE,
/**
* The CapabilityStatement instance represents the capabilities of a system or piece of software, independent of a particular installation.
*/
CAPABILITY,
/**
* The CapabilityStatement instance represents a set of requirements for other systems to meet; e.g. as part of an implementation guide or 'request for proposal'.
*/
REQUIREMENTS,
/**
* added to help the parsers with the generic types
*/
NULL;
public static CapabilityStatementKind fromCode(String codeString) throws FHIRException {
if (codeString == null || "".equals(codeString))
return null;
if ("instance".equals(codeString))
return INSTANCE;
if ("capability".equals(codeString))
return CAPABILITY;
if ("requirements".equals(codeString))
return REQUIREMENTS;
if (Configuration.isAcceptInvalidEnums())
return null;
else
throw new FHIRException("Unknown CapabilityStatementKind code '"+codeString+"'");
}
public String toCode() {
switch (this) {
case INSTANCE: return "instance";
case CAPABILITY: return "capability";
case REQUIREMENTS: return "requirements";
case NULL: return null;
default: return "?";
}
}
public String getSystem() {
switch (this) {
case INSTANCE: return "http://hl7.org/fhir/capability-statement-kind";
case CAPABILITY: return "http://hl7.org/fhir/capability-statement-kind";
case REQUIREMENTS: return "http://hl7.org/fhir/capability-statement-kind";
case NULL: return null;
default: return "?";
}
}
public String getDefinition() {
switch (this) {
case INSTANCE: return "The CapabilityStatement instance represents the present capabilities of a specific system instance. This is the kind returned by OPTIONS for a FHIR server end-point.";
case CAPABILITY: return "The CapabilityStatement instance represents the capabilities of a system or piece of software, independent of a particular installation.";
case REQUIREMENTS: return "The CapabilityStatement instance represents a set of requirements for other systems to meet; e.g. as part of an implementation guide or 'request for proposal'.";
case NULL: return null;
default: return "?";
}
}
public String getDisplay() {
switch (this) {
case INSTANCE: return "Instance";
case CAPABILITY: return "Capability";
case REQUIREMENTS: return "Requirements";
case NULL: return null;
default: return "?";
}
}
}
public static class CapabilityStatementKindEnumFactory implements EnumFactory {
public CapabilityStatementKind fromCode(String codeString) throws IllegalArgumentException {
if (codeString == null || "".equals(codeString))
if (codeString == null || "".equals(codeString))
return null;
if ("instance".equals(codeString))
return CapabilityStatementKind.INSTANCE;
if ("capability".equals(codeString))
return CapabilityStatementKind.CAPABILITY;
if ("requirements".equals(codeString))
return CapabilityStatementKind.REQUIREMENTS;
throw new IllegalArgumentException("Unknown CapabilityStatementKind code '"+codeString+"'");
}
public Enumeration fromType(PrimitiveType> code) throws FHIRException {
if (code == null)
return null;
if (code.isEmpty())
return new Enumeration(this);
String codeString = code.asStringValue();
if (codeString == null || "".equals(codeString))
return null;
if ("instance".equals(codeString))
return new Enumeration(this, CapabilityStatementKind.INSTANCE);
if ("capability".equals(codeString))
return new Enumeration(this, CapabilityStatementKind.CAPABILITY);
if ("requirements".equals(codeString))
return new Enumeration(this, CapabilityStatementKind.REQUIREMENTS);
throw new FHIRException("Unknown CapabilityStatementKind code '"+codeString+"'");
}
public String toCode(CapabilityStatementKind code) {
if (code == CapabilityStatementKind.NULL)
return null;
if (code == CapabilityStatementKind.INSTANCE)
return "instance";
if (code == CapabilityStatementKind.CAPABILITY)
return "capability";
if (code == CapabilityStatementKind.REQUIREMENTS)
return "requirements";
return "?";
}
public String toSystem(CapabilityStatementKind code) {
return code.getSystem();
}
}
public enum UnknownContentCode {
/**
* The application does not accept either unknown elements or extensions.
*/
NO,
/**
* The application accepts unknown extensions, but not unknown elements.
*/
EXTENSIONS,
/**
* The application accepts unknown elements, but not unknown extensions.
*/
ELEMENTS,
/**
* The application accepts unknown elements and extensions.
*/
BOTH,
/**
* added to help the parsers with the generic types
*/
NULL;
public static UnknownContentCode fromCode(String codeString) throws FHIRException {
if (codeString == null || "".equals(codeString))
return null;
if ("no".equals(codeString))
return NO;
if ("extensions".equals(codeString))
return EXTENSIONS;
if ("elements".equals(codeString))
return ELEMENTS;
if ("both".equals(codeString))
return BOTH;
if (Configuration.isAcceptInvalidEnums())
return null;
else
throw new FHIRException("Unknown UnknownContentCode code '"+codeString+"'");
}
public String toCode() {
switch (this) {
case NO: return "no";
case EXTENSIONS: return "extensions";
case ELEMENTS: return "elements";
case BOTH: return "both";
case NULL: return null;
default: return "?";
}
}
public String getSystem() {
switch (this) {
case NO: return "http://hl7.org/fhir/unknown-content-code";
case EXTENSIONS: return "http://hl7.org/fhir/unknown-content-code";
case ELEMENTS: return "http://hl7.org/fhir/unknown-content-code";
case BOTH: return "http://hl7.org/fhir/unknown-content-code";
case NULL: return null;
default: return "?";
}
}
public String getDefinition() {
switch (this) {
case NO: return "The application does not accept either unknown elements or extensions.";
case EXTENSIONS: return "The application accepts unknown extensions, but not unknown elements.";
case ELEMENTS: return "The application accepts unknown elements, but not unknown extensions.";
case BOTH: return "The application accepts unknown elements and extensions.";
case NULL: return null;
default: return "?";
}
}
public String getDisplay() {
switch (this) {
case NO: return "Neither Elements or Extensions";
case EXTENSIONS: return "Unknown Extensions";
case ELEMENTS: return "Unknown Elements";
case BOTH: return "Unknown Elements and Extensions";
case NULL: return null;
default: return "?";
}
}
}
public static class UnknownContentCodeEnumFactory implements EnumFactory {
public UnknownContentCode fromCode(String codeString) throws IllegalArgumentException {
if (codeString == null || "".equals(codeString))
if (codeString == null || "".equals(codeString))
return null;
if ("no".equals(codeString))
return UnknownContentCode.NO;
if ("extensions".equals(codeString))
return UnknownContentCode.EXTENSIONS;
if ("elements".equals(codeString))
return UnknownContentCode.ELEMENTS;
if ("both".equals(codeString))
return UnknownContentCode.BOTH;
throw new IllegalArgumentException("Unknown UnknownContentCode code '"+codeString+"'");
}
public Enumeration fromType(PrimitiveType> code) throws FHIRException {
if (code == null)
return null;
if (code.isEmpty())
return new Enumeration(this);
String codeString = code.asStringValue();
if (codeString == null || "".equals(codeString))
return null;
if ("no".equals(codeString))
return new Enumeration(this, UnknownContentCode.NO);
if ("extensions".equals(codeString))
return new Enumeration(this, UnknownContentCode.EXTENSIONS);
if ("elements".equals(codeString))
return new Enumeration(this, UnknownContentCode.ELEMENTS);
if ("both".equals(codeString))
return new Enumeration(this, UnknownContentCode.BOTH);
throw new FHIRException("Unknown UnknownContentCode code '"+codeString+"'");
}
public String toCode(UnknownContentCode code) {
if (code == UnknownContentCode.NULL)
return null;
if (code == UnknownContentCode.NO)
return "no";
if (code == UnknownContentCode.EXTENSIONS)
return "extensions";
if (code == UnknownContentCode.ELEMENTS)
return "elements";
if (code == UnknownContentCode.BOTH)
return "both";
return "?";
}
public String toSystem(UnknownContentCode code) {
return code.getSystem();
}
}
public enum RestfulCapabilityMode {
/**
* The application acts as a client for this resource.
*/
CLIENT,
/**
* The application acts as a server for this resource.
*/
SERVER,
/**
* added to help the parsers with the generic types
*/
NULL;
public static RestfulCapabilityMode fromCode(String codeString) throws FHIRException {
if (codeString == null || "".equals(codeString))
return null;
if ("client".equals(codeString))
return CLIENT;
if ("server".equals(codeString))
return SERVER;
if (Configuration.isAcceptInvalidEnums())
return null;
else
throw new FHIRException("Unknown RestfulCapabilityMode code '"+codeString+"'");
}
public String toCode() {
switch (this) {
case CLIENT: return "client";
case SERVER: return "server";
case NULL: return null;
default: return "?";
}
}
public String getSystem() {
switch (this) {
case CLIENT: return "http://hl7.org/fhir/restful-capability-mode";
case SERVER: return "http://hl7.org/fhir/restful-capability-mode";
case NULL: return null;
default: return "?";
}
}
public String getDefinition() {
switch (this) {
case CLIENT: return "The application acts as a client for this resource.";
case SERVER: return "The application acts as a server for this resource.";
case NULL: return null;
default: return "?";
}
}
public String getDisplay() {
switch (this) {
case CLIENT: return "Client";
case SERVER: return "Server";
case NULL: return null;
default: return "?";
}
}
}
public static class RestfulCapabilityModeEnumFactory implements EnumFactory {
public RestfulCapabilityMode fromCode(String codeString) throws IllegalArgumentException {
if (codeString == null || "".equals(codeString))
if (codeString == null || "".equals(codeString))
return null;
if ("client".equals(codeString))
return RestfulCapabilityMode.CLIENT;
if ("server".equals(codeString))
return RestfulCapabilityMode.SERVER;
throw new IllegalArgumentException("Unknown RestfulCapabilityMode code '"+codeString+"'");
}
public Enumeration fromType(PrimitiveType> code) throws FHIRException {
if (code == null)
return null;
if (code.isEmpty())
return new Enumeration(this);
String codeString = code.asStringValue();
if (codeString == null || "".equals(codeString))
return null;
if ("client".equals(codeString))
return new Enumeration(this, RestfulCapabilityMode.CLIENT);
if ("server".equals(codeString))
return new Enumeration(this, RestfulCapabilityMode.SERVER);
throw new FHIRException("Unknown RestfulCapabilityMode code '"+codeString+"'");
}
public String toCode(RestfulCapabilityMode code) {
if (code == RestfulCapabilityMode.NULL)
return null;
if (code == RestfulCapabilityMode.CLIENT)
return "client";
if (code == RestfulCapabilityMode.SERVER)
return "server";
return "?";
}
public String toSystem(RestfulCapabilityMode code) {
return code.getSystem();
}
}
public enum TypeRestfulInteraction {
/**
* null
*/
READ,
/**
* null
*/
VREAD,
/**
* null
*/
UPDATE,
/**
* null
*/
PATCH,
/**
* null
*/
DELETE,
/**
* null
*/
HISTORYINSTANCE,
/**
* null
*/
HISTORYTYPE,
/**
* null
*/
CREATE,
/**
* null
*/
SEARCHTYPE,
/**
* added to help the parsers with the generic types
*/
NULL;
public static TypeRestfulInteraction fromCode(String codeString) throws FHIRException {
if (codeString == null || "".equals(codeString))
return null;
if ("read".equals(codeString))
return READ;
if ("vread".equals(codeString))
return VREAD;
if ("update".equals(codeString))
return UPDATE;
if ("patch".equals(codeString))
return PATCH;
if ("delete".equals(codeString))
return DELETE;
if ("history-instance".equals(codeString))
return HISTORYINSTANCE;
if ("history-type".equals(codeString))
return HISTORYTYPE;
if ("create".equals(codeString))
return CREATE;
if ("search-type".equals(codeString))
return SEARCHTYPE;
if (Configuration.isAcceptInvalidEnums())
return null;
else
throw new FHIRException("Unknown TypeRestfulInteraction code '"+codeString+"'");
}
public String toCode() {
switch (this) {
case READ: return "read";
case VREAD: return "vread";
case UPDATE: return "update";
case PATCH: return "patch";
case DELETE: return "delete";
case HISTORYINSTANCE: return "history-instance";
case HISTORYTYPE: return "history-type";
case CREATE: return "create";
case SEARCHTYPE: return "search-type";
case NULL: return null;
default: return "?";
}
}
public String getSystem() {
switch (this) {
case READ: return "http://hl7.org/fhir/restful-interaction";
case VREAD: return "http://hl7.org/fhir/restful-interaction";
case UPDATE: return "http://hl7.org/fhir/restful-interaction";
case PATCH: return "http://hl7.org/fhir/restful-interaction";
case DELETE: return "http://hl7.org/fhir/restful-interaction";
case HISTORYINSTANCE: return "http://hl7.org/fhir/restful-interaction";
case HISTORYTYPE: return "http://hl7.org/fhir/restful-interaction";
case CREATE: return "http://hl7.org/fhir/restful-interaction";
case SEARCHTYPE: return "http://hl7.org/fhir/restful-interaction";
case NULL: return null;
default: return "?";
}
}
public String getDefinition() {
switch (this) {
case READ: return "";
case VREAD: return "";
case UPDATE: return "";
case PATCH: return "";
case DELETE: return "";
case HISTORYINSTANCE: return "";
case HISTORYTYPE: return "";
case CREATE: return "";
case SEARCHTYPE: return "";
case NULL: return null;
default: return "?";
}
}
public String getDisplay() {
switch (this) {
case READ: return "read";
case VREAD: return "vread";
case UPDATE: return "update";
case PATCH: return "patch";
case DELETE: return "delete";
case HISTORYINSTANCE: return "history-instance";
case HISTORYTYPE: return "history-type";
case CREATE: return "create";
case SEARCHTYPE: return "search-type";
case NULL: return null;
default: return "?";
}
}
}
public static class TypeRestfulInteractionEnumFactory implements EnumFactory {
public TypeRestfulInteraction fromCode(String codeString) throws IllegalArgumentException {
if (codeString == null || "".equals(codeString))
if (codeString == null || "".equals(codeString))
return null;
if ("read".equals(codeString))
return TypeRestfulInteraction.READ;
if ("vread".equals(codeString))
return TypeRestfulInteraction.VREAD;
if ("update".equals(codeString))
return TypeRestfulInteraction.UPDATE;
if ("patch".equals(codeString))
return TypeRestfulInteraction.PATCH;
if ("delete".equals(codeString))
return TypeRestfulInteraction.DELETE;
if ("history-instance".equals(codeString))
return TypeRestfulInteraction.HISTORYINSTANCE;
if ("history-type".equals(codeString))
return TypeRestfulInteraction.HISTORYTYPE;
if ("create".equals(codeString))
return TypeRestfulInteraction.CREATE;
if ("search-type".equals(codeString))
return TypeRestfulInteraction.SEARCHTYPE;
throw new IllegalArgumentException("Unknown TypeRestfulInteraction code '"+codeString+"'");
}
public Enumeration fromType(PrimitiveType> code) throws FHIRException {
if (code == null)
return null;
if (code.isEmpty())
return new Enumeration(this);
String codeString = code.asStringValue();
if (codeString == null || "".equals(codeString))
return null;
if ("read".equals(codeString))
return new Enumeration(this, TypeRestfulInteraction.READ);
if ("vread".equals(codeString))
return new Enumeration(this, TypeRestfulInteraction.VREAD);
if ("update".equals(codeString))
return new Enumeration(this, TypeRestfulInteraction.UPDATE);
if ("patch".equals(codeString))
return new Enumeration(this, TypeRestfulInteraction.PATCH);
if ("delete".equals(codeString))
return new Enumeration(this, TypeRestfulInteraction.DELETE);
if ("history-instance".equals(codeString))
return new Enumeration(this, TypeRestfulInteraction.HISTORYINSTANCE);
if ("history-type".equals(codeString))
return new Enumeration(this, TypeRestfulInteraction.HISTORYTYPE);
if ("create".equals(codeString))
return new Enumeration(this, TypeRestfulInteraction.CREATE);
if ("search-type".equals(codeString))
return new Enumeration(this, TypeRestfulInteraction.SEARCHTYPE);
throw new FHIRException("Unknown TypeRestfulInteraction code '"+codeString+"'");
}
public String toCode(TypeRestfulInteraction code) {
if (code == TypeRestfulInteraction.NULL)
return null;
if (code == TypeRestfulInteraction.READ)
return "read";
if (code == TypeRestfulInteraction.VREAD)
return "vread";
if (code == TypeRestfulInteraction.UPDATE)
return "update";
if (code == TypeRestfulInteraction.PATCH)
return "patch";
if (code == TypeRestfulInteraction.DELETE)
return "delete";
if (code == TypeRestfulInteraction.HISTORYINSTANCE)
return "history-instance";
if (code == TypeRestfulInteraction.HISTORYTYPE)
return "history-type";
if (code == TypeRestfulInteraction.CREATE)
return "create";
if (code == TypeRestfulInteraction.SEARCHTYPE)
return "search-type";
return "?";
}
public String toSystem(TypeRestfulInteraction code) {
return code.getSystem();
}
}
public enum ResourceVersionPolicy {
/**
* VersionId meta-property is not supported (server) or used (client).
*/
NOVERSION,
/**
* VersionId meta-property is supported (server) or used (client).
*/
VERSIONED,
/**
* VersionId must be correct for updates (server) or will be specified (If-match header) for updates (client).
*/
VERSIONEDUPDATE,
/**
* added to help the parsers with the generic types
*/
NULL;
public static ResourceVersionPolicy fromCode(String codeString) throws FHIRException {
if (codeString == null || "".equals(codeString))
return null;
if ("no-version".equals(codeString))
return NOVERSION;
if ("versioned".equals(codeString))
return VERSIONED;
if ("versioned-update".equals(codeString))
return VERSIONEDUPDATE;
if (Configuration.isAcceptInvalidEnums())
return null;
else
throw new FHIRException("Unknown ResourceVersionPolicy code '"+codeString+"'");
}
public String toCode() {
switch (this) {
case NOVERSION: return "no-version";
case VERSIONED: return "versioned";
case VERSIONEDUPDATE: return "versioned-update";
case NULL: return null;
default: return "?";
}
}
public String getSystem() {
switch (this) {
case NOVERSION: return "http://hl7.org/fhir/versioning-policy";
case VERSIONED: return "http://hl7.org/fhir/versioning-policy";
case VERSIONEDUPDATE: return "http://hl7.org/fhir/versioning-policy";
case NULL: return null;
default: return "?";
}
}
public String getDefinition() {
switch (this) {
case NOVERSION: return "VersionId meta-property is not supported (server) or used (client).";
case VERSIONED: return "VersionId meta-property is supported (server) or used (client).";
case VERSIONEDUPDATE: return "VersionId must be correct for updates (server) or will be specified (If-match header) for updates (client).";
case NULL: return null;
default: return "?";
}
}
public String getDisplay() {
switch (this) {
case NOVERSION: return "No VersionId Support";
case VERSIONED: return "Versioned";
case VERSIONEDUPDATE: return "VersionId tracked fully";
case NULL: return null;
default: return "?";
}
}
}
public static class ResourceVersionPolicyEnumFactory implements EnumFactory {
public ResourceVersionPolicy fromCode(String codeString) throws IllegalArgumentException {
if (codeString == null || "".equals(codeString))
if (codeString == null || "".equals(codeString))
return null;
if ("no-version".equals(codeString))
return ResourceVersionPolicy.NOVERSION;
if ("versioned".equals(codeString))
return ResourceVersionPolicy.VERSIONED;
if ("versioned-update".equals(codeString))
return ResourceVersionPolicy.VERSIONEDUPDATE;
throw new IllegalArgumentException("Unknown ResourceVersionPolicy code '"+codeString+"'");
}
public Enumeration fromType(PrimitiveType> code) throws FHIRException {
if (code == null)
return null;
if (code.isEmpty())
return new Enumeration(this);
String codeString = code.asStringValue();
if (codeString == null || "".equals(codeString))
return null;
if ("no-version".equals(codeString))
return new Enumeration(this, ResourceVersionPolicy.NOVERSION);
if ("versioned".equals(codeString))
return new Enumeration(this, ResourceVersionPolicy.VERSIONED);
if ("versioned-update".equals(codeString))
return new Enumeration(this, ResourceVersionPolicy.VERSIONEDUPDATE);
throw new FHIRException("Unknown ResourceVersionPolicy code '"+codeString+"'");
}
public String toCode(ResourceVersionPolicy code) {
if (code == ResourceVersionPolicy.NULL)
return null;
if (code == ResourceVersionPolicy.NOVERSION)
return "no-version";
if (code == ResourceVersionPolicy.VERSIONED)
return "versioned";
if (code == ResourceVersionPolicy.VERSIONEDUPDATE)
return "versioned-update";
return "?";
}
public String toSystem(ResourceVersionPolicy code) {
return code.getSystem();
}
}
public enum ConditionalReadStatus {
/**
* No support for conditional deletes.
*/
NOTSUPPORTED,
/**
* Conditional reads are supported, but only with the If-Modified-Since HTTP Header.
*/
MODIFIEDSINCE,
/**
* Conditional reads are supported, but only with the If-None-Match HTTP Header.
*/
NOTMATCH,
/**
* Conditional reads are supported, with both If-Modified-Since and If-None-Match HTTP Headers.
*/
FULLSUPPORT,
/**
* added to help the parsers with the generic types
*/
NULL;
public static ConditionalReadStatus fromCode(String codeString) throws FHIRException {
if (codeString == null || "".equals(codeString))
return null;
if ("not-supported".equals(codeString))
return NOTSUPPORTED;
if ("modified-since".equals(codeString))
return MODIFIEDSINCE;
if ("not-match".equals(codeString))
return NOTMATCH;
if ("full-support".equals(codeString))
return FULLSUPPORT;
if (Configuration.isAcceptInvalidEnums())
return null;
else
throw new FHIRException("Unknown ConditionalReadStatus code '"+codeString+"'");
}
public String toCode() {
switch (this) {
case NOTSUPPORTED: return "not-supported";
case MODIFIEDSINCE: return "modified-since";
case NOTMATCH: return "not-match";
case FULLSUPPORT: return "full-support";
case NULL: return null;
default: return "?";
}
}
public String getSystem() {
switch (this) {
case NOTSUPPORTED: return "http://hl7.org/fhir/conditional-read-status";
case MODIFIEDSINCE: return "http://hl7.org/fhir/conditional-read-status";
case NOTMATCH: return "http://hl7.org/fhir/conditional-read-status";
case FULLSUPPORT: return "http://hl7.org/fhir/conditional-read-status";
case NULL: return null;
default: return "?";
}
}
public String getDefinition() {
switch (this) {
case NOTSUPPORTED: return "No support for conditional deletes.";
case MODIFIEDSINCE: return "Conditional reads are supported, but only with the If-Modified-Since HTTP Header.";
case NOTMATCH: return "Conditional reads are supported, but only with the If-None-Match HTTP Header.";
case FULLSUPPORT: return "Conditional reads are supported, with both If-Modified-Since and If-None-Match HTTP Headers.";
case NULL: return null;
default: return "?";
}
}
public String getDisplay() {
switch (this) {
case NOTSUPPORTED: return "Not Supported";
case MODIFIEDSINCE: return "If-Modified-Since";
case NOTMATCH: return "If-None-Match";
case FULLSUPPORT: return "Full Support";
case NULL: return null;
default: return "?";
}
}
}
public static class ConditionalReadStatusEnumFactory implements EnumFactory {
public ConditionalReadStatus fromCode(String codeString) throws IllegalArgumentException {
if (codeString == null || "".equals(codeString))
if (codeString == null || "".equals(codeString))
return null;
if ("not-supported".equals(codeString))
return ConditionalReadStatus.NOTSUPPORTED;
if ("modified-since".equals(codeString))
return ConditionalReadStatus.MODIFIEDSINCE;
if ("not-match".equals(codeString))
return ConditionalReadStatus.NOTMATCH;
if ("full-support".equals(codeString))
return ConditionalReadStatus.FULLSUPPORT;
throw new IllegalArgumentException("Unknown ConditionalReadStatus code '"+codeString+"'");
}
public Enumeration fromType(PrimitiveType> code) throws FHIRException {
if (code == null)
return null;
if (code.isEmpty())
return new Enumeration(this);
String codeString = code.asStringValue();
if (codeString == null || "".equals(codeString))
return null;
if ("not-supported".equals(codeString))
return new Enumeration(this, ConditionalReadStatus.NOTSUPPORTED);
if ("modified-since".equals(codeString))
return new Enumeration(this, ConditionalReadStatus.MODIFIEDSINCE);
if ("not-match".equals(codeString))
return new Enumeration(this, ConditionalReadStatus.NOTMATCH);
if ("full-support".equals(codeString))
return new Enumeration(this, ConditionalReadStatus.FULLSUPPORT);
throw new FHIRException("Unknown ConditionalReadStatus code '"+codeString+"'");
}
public String toCode(ConditionalReadStatus code) {
if (code == ConditionalReadStatus.NULL)
return null;
if (code == ConditionalReadStatus.NOTSUPPORTED)
return "not-supported";
if (code == ConditionalReadStatus.MODIFIEDSINCE)
return "modified-since";
if (code == ConditionalReadStatus.NOTMATCH)
return "not-match";
if (code == ConditionalReadStatus.FULLSUPPORT)
return "full-support";
return "?";
}
public String toSystem(ConditionalReadStatus code) {
return code.getSystem();
}
}
public enum ConditionalDeleteStatus {
/**
* No support for conditional deletes.
*/
NOTSUPPORTED,
/**
* Conditional deletes are supported, but only single resources at a time.
*/
SINGLE,
/**
* Conditional deletes are supported, and multiple resources can be deleted in a single interaction.
*/
MULTIPLE,
/**
* added to help the parsers with the generic types
*/
NULL;
public static ConditionalDeleteStatus fromCode(String codeString) throws FHIRException {
if (codeString == null || "".equals(codeString))
return null;
if ("not-supported".equals(codeString))
return NOTSUPPORTED;
if ("single".equals(codeString))
return SINGLE;
if ("multiple".equals(codeString))
return MULTIPLE;
if (Configuration.isAcceptInvalidEnums())
return null;
else
throw new FHIRException("Unknown ConditionalDeleteStatus code '"+codeString+"'");
}
public String toCode() {
switch (this) {
case NOTSUPPORTED: return "not-supported";
case SINGLE: return "single";
case MULTIPLE: return "multiple";
case NULL: return null;
default: return "?";
}
}
public String getSystem() {
switch (this) {
case NOTSUPPORTED: return "http://hl7.org/fhir/conditional-delete-status";
case SINGLE: return "http://hl7.org/fhir/conditional-delete-status";
case MULTIPLE: return "http://hl7.org/fhir/conditional-delete-status";
case NULL: return null;
default: return "?";
}
}
public String getDefinition() {
switch (this) {
case NOTSUPPORTED: return "No support for conditional deletes.";
case SINGLE: return "Conditional deletes are supported, but only single resources at a time.";
case MULTIPLE: return "Conditional deletes are supported, and multiple resources can be deleted in a single interaction.";
case NULL: return null;
default: return "?";
}
}
public String getDisplay() {
switch (this) {
case NOTSUPPORTED: return "Not Supported";
case SINGLE: return "Single Deletes Supported";
case MULTIPLE: return "Multiple Deletes Supported";
case NULL: return null;
default: return "?";
}
}
}
public static class ConditionalDeleteStatusEnumFactory implements EnumFactory {
public ConditionalDeleteStatus fromCode(String codeString) throws IllegalArgumentException {
if (codeString == null || "".equals(codeString))
if (codeString == null || "".equals(codeString))
return null;
if ("not-supported".equals(codeString))
return ConditionalDeleteStatus.NOTSUPPORTED;
if ("single".equals(codeString))
return ConditionalDeleteStatus.SINGLE;
if ("multiple".equals(codeString))
return ConditionalDeleteStatus.MULTIPLE;
throw new IllegalArgumentException("Unknown ConditionalDeleteStatus code '"+codeString+"'");
}
public Enumeration fromType(PrimitiveType> code) throws FHIRException {
if (code == null)
return null;
if (code.isEmpty())
return new Enumeration(this);
String codeString = code.asStringValue();
if (codeString == null || "".equals(codeString))
return null;
if ("not-supported".equals(codeString))
return new Enumeration(this, ConditionalDeleteStatus.NOTSUPPORTED);
if ("single".equals(codeString))
return new Enumeration(this, ConditionalDeleteStatus.SINGLE);
if ("multiple".equals(codeString))
return new Enumeration(this, ConditionalDeleteStatus.MULTIPLE);
throw new FHIRException("Unknown ConditionalDeleteStatus code '"+codeString+"'");
}
public String toCode(ConditionalDeleteStatus code) {
if (code == ConditionalDeleteStatus.NULL)
return null;
if (code == ConditionalDeleteStatus.NOTSUPPORTED)
return "not-supported";
if (code == ConditionalDeleteStatus.SINGLE)
return "single";
if (code == ConditionalDeleteStatus.MULTIPLE)
return "multiple";
return "?";
}
public String toSystem(ConditionalDeleteStatus code) {
return code.getSystem();
}
}
public enum ReferenceHandlingPolicy {
/**
* The server supports and populates Literal references where they are known (this code does not guarantee that all references are literal; see 'enforced')
*/
LITERAL,
/**
* The server allows logical references
*/
LOGICAL,
/**
* The server will attempt to resolve logical references to literal references (if resolution fails, the server may still accept resources; see logical)
*/
RESOLVES,
/**
* The server enforces that references have integrity - e.g. it ensures that references can always be resolved. This is typically the case for clinical record systems, but often not the case for middleware/proxy systems
*/
ENFORCED,
/**
* The server does not support references that point to other servers
*/
LOCAL,
/**
* added to help the parsers with the generic types
*/
NULL;
public static ReferenceHandlingPolicy fromCode(String codeString) throws FHIRException {
if (codeString == null || "".equals(codeString))
return null;
if ("literal".equals(codeString))
return LITERAL;
if ("logical".equals(codeString))
return LOGICAL;
if ("resolves".equals(codeString))
return RESOLVES;
if ("enforced".equals(codeString))
return ENFORCED;
if ("local".equals(codeString))
return LOCAL;
if (Configuration.isAcceptInvalidEnums())
return null;
else
throw new FHIRException("Unknown ReferenceHandlingPolicy code '"+codeString+"'");
}
public String toCode() {
switch (this) {
case LITERAL: return "literal";
case LOGICAL: return "logical";
case RESOLVES: return "resolves";
case ENFORCED: return "enforced";
case LOCAL: return "local";
case NULL: return null;
default: return "?";
}
}
public String getSystem() {
switch (this) {
case LITERAL: return "http://hl7.org/fhir/reference-handling-policy";
case LOGICAL: return "http://hl7.org/fhir/reference-handling-policy";
case RESOLVES: return "http://hl7.org/fhir/reference-handling-policy";
case ENFORCED: return "http://hl7.org/fhir/reference-handling-policy";
case LOCAL: return "http://hl7.org/fhir/reference-handling-policy";
case NULL: return null;
default: return "?";
}
}
public String getDefinition() {
switch (this) {
case LITERAL: return "The server supports and populates Literal references where they are known (this code does not guarantee that all references are literal; see 'enforced')";
case LOGICAL: return "The server allows logical references";
case RESOLVES: return "The server will attempt to resolve logical references to literal references (if resolution fails, the server may still accept resources; see logical)";
case ENFORCED: return "The server enforces that references have integrity - e.g. it ensures that references can always be resolved. This is typically the case for clinical record systems, but often not the case for middleware/proxy systems";
case LOCAL: return "The server does not support references that point to other servers";
case NULL: return null;
default: return "?";
}
}
public String getDisplay() {
switch (this) {
case LITERAL: return "Literal References";
case LOGICAL: return "Logical References";
case RESOLVES: return "Resolves References";
case ENFORCED: return "Reference Integrity Enforced";
case LOCAL: return "Local References Only";
case NULL: return null;
default: return "?";
}
}
}
public static class ReferenceHandlingPolicyEnumFactory implements EnumFactory {
public ReferenceHandlingPolicy fromCode(String codeString) throws IllegalArgumentException {
if (codeString == null || "".equals(codeString))
if (codeString == null || "".equals(codeString))
return null;
if ("literal".equals(codeString))
return ReferenceHandlingPolicy.LITERAL;
if ("logical".equals(codeString))
return ReferenceHandlingPolicy.LOGICAL;
if ("resolves".equals(codeString))
return ReferenceHandlingPolicy.RESOLVES;
if ("enforced".equals(codeString))
return ReferenceHandlingPolicy.ENFORCED;
if ("local".equals(codeString))
return ReferenceHandlingPolicy.LOCAL;
throw new IllegalArgumentException("Unknown ReferenceHandlingPolicy code '"+codeString+"'");
}
public Enumeration fromType(PrimitiveType> code) throws FHIRException {
if (code == null)
return null;
if (code.isEmpty())
return new Enumeration(this);
String codeString = code.asStringValue();
if (codeString == null || "".equals(codeString))
return null;
if ("literal".equals(codeString))
return new Enumeration(this, ReferenceHandlingPolicy.LITERAL);
if ("logical".equals(codeString))
return new Enumeration(this, ReferenceHandlingPolicy.LOGICAL);
if ("resolves".equals(codeString))
return new Enumeration(this, ReferenceHandlingPolicy.RESOLVES);
if ("enforced".equals(codeString))
return new Enumeration(this, ReferenceHandlingPolicy.ENFORCED);
if ("local".equals(codeString))
return new Enumeration(this, ReferenceHandlingPolicy.LOCAL);
throw new FHIRException("Unknown ReferenceHandlingPolicy code '"+codeString+"'");
}
public String toCode(ReferenceHandlingPolicy code) {
if (code == ReferenceHandlingPolicy.NULL)
return null;
if (code == ReferenceHandlingPolicy.LITERAL)
return "literal";
if (code == ReferenceHandlingPolicy.LOGICAL)
return "logical";
if (code == ReferenceHandlingPolicy.RESOLVES)
return "resolves";
if (code == ReferenceHandlingPolicy.ENFORCED)
return "enforced";
if (code == ReferenceHandlingPolicy.LOCAL)
return "local";
return "?";
}
public String toSystem(ReferenceHandlingPolicy code) {
return code.getSystem();
}
}
public enum SystemRestfulInteraction {
/**
* null
*/
TRANSACTION,
/**
* null
*/
BATCH,
/**
* null
*/
SEARCHSYSTEM,
/**
* null
*/
HISTORYSYSTEM,
/**
* added to help the parsers with the generic types
*/
NULL;
public static SystemRestfulInteraction fromCode(String codeString) throws FHIRException {
if (codeString == null || "".equals(codeString))
return null;
if ("transaction".equals(codeString))
return TRANSACTION;
if ("batch".equals(codeString))
return BATCH;
if ("search-system".equals(codeString))
return SEARCHSYSTEM;
if ("history-system".equals(codeString))
return HISTORYSYSTEM;
if (Configuration.isAcceptInvalidEnums())
return null;
else
throw new FHIRException("Unknown SystemRestfulInteraction code '"+codeString+"'");
}
public String toCode() {
switch (this) {
case TRANSACTION: return "transaction";
case BATCH: return "batch";
case SEARCHSYSTEM: return "search-system";
case HISTORYSYSTEM: return "history-system";
case NULL: return null;
default: return "?";
}
}
public String getSystem() {
switch (this) {
case TRANSACTION: return "http://hl7.org/fhir/restful-interaction";
case BATCH: return "http://hl7.org/fhir/restful-interaction";
case SEARCHSYSTEM: return "http://hl7.org/fhir/restful-interaction";
case HISTORYSYSTEM: return "http://hl7.org/fhir/restful-interaction";
case NULL: return null;
default: return "?";
}
}
public String getDefinition() {
switch (this) {
case TRANSACTION: return "";
case BATCH: return "";
case SEARCHSYSTEM: return "";
case HISTORYSYSTEM: return "";
case NULL: return null;
default: return "?";
}
}
public String getDisplay() {
switch (this) {
case TRANSACTION: return "transaction";
case BATCH: return "batch";
case SEARCHSYSTEM: return "search-system";
case HISTORYSYSTEM: return "history-system";
case NULL: return null;
default: return "?";
}
}
}
public static class SystemRestfulInteractionEnumFactory implements EnumFactory {
public SystemRestfulInteraction fromCode(String codeString) throws IllegalArgumentException {
if (codeString == null || "".equals(codeString))
if (codeString == null || "".equals(codeString))
return null;
if ("transaction".equals(codeString))
return SystemRestfulInteraction.TRANSACTION;
if ("batch".equals(codeString))
return SystemRestfulInteraction.BATCH;
if ("search-system".equals(codeString))
return SystemRestfulInteraction.SEARCHSYSTEM;
if ("history-system".equals(codeString))
return SystemRestfulInteraction.HISTORYSYSTEM;
throw new IllegalArgumentException("Unknown SystemRestfulInteraction code '"+codeString+"'");
}
public Enumeration fromType(PrimitiveType> code) throws FHIRException {
if (code == null)
return null;
if (code.isEmpty())
return new Enumeration(this);
String codeString = code.asStringValue();
if (codeString == null || "".equals(codeString))
return null;
if ("transaction".equals(codeString))
return new Enumeration(this, SystemRestfulInteraction.TRANSACTION);
if ("batch".equals(codeString))
return new Enumeration(this, SystemRestfulInteraction.BATCH);
if ("search-system".equals(codeString))
return new Enumeration(this, SystemRestfulInteraction.SEARCHSYSTEM);
if ("history-system".equals(codeString))
return new Enumeration(this, SystemRestfulInteraction.HISTORYSYSTEM);
throw new FHIRException("Unknown SystemRestfulInteraction code '"+codeString+"'");
}
public String toCode(SystemRestfulInteraction code) {
if (code == SystemRestfulInteraction.NULL)
return null;
if (code == SystemRestfulInteraction.TRANSACTION)
return "transaction";
if (code == SystemRestfulInteraction.BATCH)
return "batch";
if (code == SystemRestfulInteraction.SEARCHSYSTEM)
return "search-system";
if (code == SystemRestfulInteraction.HISTORYSYSTEM)
return "history-system";
return "?";
}
public String toSystem(SystemRestfulInteraction code) {
return code.getSystem();
}
}
public enum EventCapabilityMode {
/**
* The application sends requests and receives responses.
*/
SENDER,
/**
* The application receives requests and sends responses.
*/
RECEIVER,
/**
* added to help the parsers with the generic types
*/
NULL;
public static EventCapabilityMode fromCode(String codeString) throws FHIRException {
if (codeString == null || "".equals(codeString))
return null;
if ("sender".equals(codeString))
return SENDER;
if ("receiver".equals(codeString))
return RECEIVER;
if (Configuration.isAcceptInvalidEnums())
return null;
else
throw new FHIRException("Unknown EventCapabilityMode code '"+codeString+"'");
}
public String toCode() {
switch (this) {
case SENDER: return "sender";
case RECEIVER: return "receiver";
case NULL: return null;
default: return "?";
}
}
public String getSystem() {
switch (this) {
case SENDER: return "http://hl7.org/fhir/event-capability-mode";
case RECEIVER: return "http://hl7.org/fhir/event-capability-mode";
case NULL: return null;
default: return "?";
}
}
public String getDefinition() {
switch (this) {
case SENDER: return "The application sends requests and receives responses.";
case RECEIVER: return "The application receives requests and sends responses.";
case NULL: return null;
default: return "?";
}
}
public String getDisplay() {
switch (this) {
case SENDER: return "Sender";
case RECEIVER: return "Receiver";
case NULL: return null;
default: return "?";
}
}
}
public static class EventCapabilityModeEnumFactory implements EnumFactory {
public EventCapabilityMode fromCode(String codeString) throws IllegalArgumentException {
if (codeString == null || "".equals(codeString))
if (codeString == null || "".equals(codeString))
return null;
if ("sender".equals(codeString))
return EventCapabilityMode.SENDER;
if ("receiver".equals(codeString))
return EventCapabilityMode.RECEIVER;
throw new IllegalArgumentException("Unknown EventCapabilityMode code '"+codeString+"'");
}
public Enumeration fromType(PrimitiveType> code) throws FHIRException {
if (code == null)
return null;
if (code.isEmpty())
return new Enumeration(this);
String codeString = code.asStringValue();
if (codeString == null || "".equals(codeString))
return null;
if ("sender".equals(codeString))
return new Enumeration(this, EventCapabilityMode.SENDER);
if ("receiver".equals(codeString))
return new Enumeration(this, EventCapabilityMode.RECEIVER);
throw new FHIRException("Unknown EventCapabilityMode code '"+codeString+"'");
}
public String toCode(EventCapabilityMode code) {
if (code == EventCapabilityMode.NULL)
return null;
if (code == EventCapabilityMode.SENDER)
return "sender";
if (code == EventCapabilityMode.RECEIVER)
return "receiver";
return "?";
}
public String toSystem(EventCapabilityMode code) {
return code.getSystem();
}
}
public enum MessageSignificanceCategory {
/**
* The message represents/requests a change that should not be processed more than once; e.g., making a booking for an appointment.
*/
CONSEQUENCE,
/**
* The message represents a response to query for current information. Retrospective processing is wrong and/or wasteful.
*/
CURRENCY,
/**
* The content is not necessarily intended to be current, and it can be reprocessed, though there may be version issues created by processing old notifications.
*/
NOTIFICATION,
/**
* added to help the parsers with the generic types
*/
NULL;
public static MessageSignificanceCategory fromCode(String codeString) throws FHIRException {
if (codeString == null || "".equals(codeString))
return null;
if ("Consequence".equals(codeString))
return CONSEQUENCE;
if ("Currency".equals(codeString))
return CURRENCY;
if ("Notification".equals(codeString))
return NOTIFICATION;
if (Configuration.isAcceptInvalidEnums())
return null;
else
throw new FHIRException("Unknown MessageSignificanceCategory code '"+codeString+"'");
}
public String toCode() {
switch (this) {
case CONSEQUENCE: return "Consequence";
case CURRENCY: return "Currency";
case NOTIFICATION: return "Notification";
case NULL: return null;
default: return "?";
}
}
public String getSystem() {
switch (this) {
case CONSEQUENCE: return "http://hl7.org/fhir/message-significance-category";
case CURRENCY: return "http://hl7.org/fhir/message-significance-category";
case NOTIFICATION: return "http://hl7.org/fhir/message-significance-category";
case NULL: return null;
default: return "?";
}
}
public String getDefinition() {
switch (this) {
case CONSEQUENCE: return "The message represents/requests a change that should not be processed more than once; e.g., making a booking for an appointment.";
case CURRENCY: return "The message represents a response to query for current information. Retrospective processing is wrong and/or wasteful.";
case NOTIFICATION: return "The content is not necessarily intended to be current, and it can be reprocessed, though there may be version issues created by processing old notifications.";
case NULL: return null;
default: return "?";
}
}
public String getDisplay() {
switch (this) {
case CONSEQUENCE: return "Consequence";
case CURRENCY: return "Currency";
case NOTIFICATION: return "Notification";
case NULL: return null;
default: return "?";
}
}
}
public static class MessageSignificanceCategoryEnumFactory implements EnumFactory {
public MessageSignificanceCategory fromCode(String codeString) throws IllegalArgumentException {
if (codeString == null || "".equals(codeString))
if (codeString == null || "".equals(codeString))
return null;
if ("Consequence".equals(codeString))
return MessageSignificanceCategory.CONSEQUENCE;
if ("Currency".equals(codeString))
return MessageSignificanceCategory.CURRENCY;
if ("Notification".equals(codeString))
return MessageSignificanceCategory.NOTIFICATION;
throw new IllegalArgumentException("Unknown MessageSignificanceCategory code '"+codeString+"'");
}
public Enumeration fromType(PrimitiveType> code) throws FHIRException {
if (code == null)
return null;
if (code.isEmpty())
return new Enumeration(this);
String codeString = code.asStringValue();
if (codeString == null || "".equals(codeString))
return null;
if ("Consequence".equals(codeString))
return new Enumeration(this, MessageSignificanceCategory.CONSEQUENCE);
if ("Currency".equals(codeString))
return new Enumeration(this, MessageSignificanceCategory.CURRENCY);
if ("Notification".equals(codeString))
return new Enumeration(this, MessageSignificanceCategory.NOTIFICATION);
throw new FHIRException("Unknown MessageSignificanceCategory code '"+codeString+"'");
}
public String toCode(MessageSignificanceCategory code) {
if (code == MessageSignificanceCategory.NULL)
return null;
if (code == MessageSignificanceCategory.CONSEQUENCE)
return "Consequence";
if (code == MessageSignificanceCategory.CURRENCY)
return "Currency";
if (code == MessageSignificanceCategory.NOTIFICATION)
return "Notification";
return "?";
}
public String toSystem(MessageSignificanceCategory code) {
return code.getSystem();
}
}
public enum DocumentMode {
/**
* The application produces documents of the specified type.
*/
PRODUCER,
/**
* The application consumes documents of the specified type.
*/
CONSUMER,
/**
* added to help the parsers with the generic types
*/
NULL;
public static DocumentMode fromCode(String codeString) throws FHIRException {
if (codeString == null || "".equals(codeString))
return null;
if ("producer".equals(codeString))
return PRODUCER;
if ("consumer".equals(codeString))
return CONSUMER;
if (Configuration.isAcceptInvalidEnums())
return null;
else
throw new FHIRException("Unknown DocumentMode code '"+codeString+"'");
}
public String toCode() {
switch (this) {
case PRODUCER: return "producer";
case CONSUMER: return "consumer";
case NULL: return null;
default: return "?";
}
}
public String getSystem() {
switch (this) {
case PRODUCER: return "http://hl7.org/fhir/document-mode";
case CONSUMER: return "http://hl7.org/fhir/document-mode";
case NULL: return null;
default: return "?";
}
}
public String getDefinition() {
switch (this) {
case PRODUCER: return "The application produces documents of the specified type.";
case CONSUMER: return "The application consumes documents of the specified type.";
case NULL: return null;
default: return "?";
}
}
public String getDisplay() {
switch (this) {
case PRODUCER: return "Producer";
case CONSUMER: return "Consumer";
case NULL: return null;
default: return "?";
}
}
}
public static class DocumentModeEnumFactory implements EnumFactory {
public DocumentMode fromCode(String codeString) throws IllegalArgumentException {
if (codeString == null || "".equals(codeString))
if (codeString == null || "".equals(codeString))
return null;
if ("producer".equals(codeString))
return DocumentMode.PRODUCER;
if ("consumer".equals(codeString))
return DocumentMode.CONSUMER;
throw new IllegalArgumentException("Unknown DocumentMode code '"+codeString+"'");
}
public Enumeration fromType(PrimitiveType> code) throws FHIRException {
if (code == null)
return null;
if (code.isEmpty())
return new Enumeration(this);
String codeString = code.asStringValue();
if (codeString == null || "".equals(codeString))
return null;
if ("producer".equals(codeString))
return new Enumeration(this, DocumentMode.PRODUCER);
if ("consumer".equals(codeString))
return new Enumeration(this, DocumentMode.CONSUMER);
throw new FHIRException("Unknown DocumentMode code '"+codeString+"'");
}
public String toCode(DocumentMode code) {
if (code == DocumentMode.NULL)
return null;
if (code == DocumentMode.PRODUCER)
return "producer";
if (code == DocumentMode.CONSUMER)
return "consumer";
return "?";
}
public String toSystem(DocumentMode code) {
return code.getSystem();
}
}
@Block()
public static class CapabilityStatementSoftwareComponent extends BackboneElement implements IBaseBackboneElement {
/**
* Name software is known by.
*/
@Child(name = "name", type = {StringType.class}, order=1, min=1, max=1, modifier=false, summary=true)
@Description(shortDefinition="A name the software is known by", formalDefinition="Name software is known by." )
protected StringType name;
/**
* The version identifier for the software covered by this statement.
*/
@Child(name = "version", type = {StringType.class}, order=2, min=0, max=1, modifier=false, summary=true)
@Description(shortDefinition="Version covered by this statement", formalDefinition="The version identifier for the software covered by this statement." )
protected StringType version;
/**
* Date this version of the software was released.
*/
@Child(name = "releaseDate", type = {DateTimeType.class}, order=3, min=0, max=1, modifier=false, summary=true)
@Description(shortDefinition="Date this version released", formalDefinition="Date this version of the software was released." )
protected DateTimeType releaseDate;
private static final long serialVersionUID = 1819769027L;
/**
* Constructor
*/
public CapabilityStatementSoftwareComponent() {
super();
}
/**
* Constructor
*/
public CapabilityStatementSoftwareComponent(StringType name) {
super();
this.name = name;
}
/**
* @return {@link #name} (Name software is known by.). This is the underlying object with id, value and extensions. The accessor "getName" gives direct access to the value
*/
public StringType getNameElement() {
if (this.name == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementSoftwareComponent.name");
else if (Configuration.doAutoCreate())
this.name = new StringType(); // bb
return this.name;
}
public boolean hasNameElement() {
return this.name != null && !this.name.isEmpty();
}
public boolean hasName() {
return this.name != null && !this.name.isEmpty();
}
/**
* @param value {@link #name} (Name software is known by.). This is the underlying object with id, value and extensions. The accessor "getName" gives direct access to the value
*/
public CapabilityStatementSoftwareComponent setNameElement(StringType value) {
this.name = value;
return this;
}
/**
* @return Name software is known by.
*/
public String getName() {
return this.name == null ? null : this.name.getValue();
}
/**
* @param value Name software is known by.
*/
public CapabilityStatementSoftwareComponent setName(String value) {
if (this.name == null)
this.name = new StringType();
this.name.setValue(value);
return this;
}
/**
* @return {@link #version} (The version identifier for the software covered by this statement.). This is the underlying object with id, value and extensions. The accessor "getVersion" gives direct access to the value
*/
public StringType getVersionElement() {
if (this.version == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementSoftwareComponent.version");
else if (Configuration.doAutoCreate())
this.version = new StringType(); // bb
return this.version;
}
public boolean hasVersionElement() {
return this.version != null && !this.version.isEmpty();
}
public boolean hasVersion() {
return this.version != null && !this.version.isEmpty();
}
/**
* @param value {@link #version} (The version identifier for the software covered by this statement.). This is the underlying object with id, value and extensions. The accessor "getVersion" gives direct access to the value
*/
public CapabilityStatementSoftwareComponent setVersionElement(StringType value) {
this.version = value;
return this;
}
/**
* @return The version identifier for the software covered by this statement.
*/
public String getVersion() {
return this.version == null ? null : this.version.getValue();
}
/**
* @param value The version identifier for the software covered by this statement.
*/
public CapabilityStatementSoftwareComponent setVersion(String value) {
if (Utilities.noString(value))
this.version = null;
else {
if (this.version == null)
this.version = new StringType();
this.version.setValue(value);
}
return this;
}
/**
* @return {@link #releaseDate} (Date this version of the software was released.). This is the underlying object with id, value and extensions. The accessor "getReleaseDate" gives direct access to the value
*/
public DateTimeType getReleaseDateElement() {
if (this.releaseDate == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementSoftwareComponent.releaseDate");
else if (Configuration.doAutoCreate())
this.releaseDate = new DateTimeType(); // bb
return this.releaseDate;
}
public boolean hasReleaseDateElement() {
return this.releaseDate != null && !this.releaseDate.isEmpty();
}
public boolean hasReleaseDate() {
return this.releaseDate != null && !this.releaseDate.isEmpty();
}
/**
* @param value {@link #releaseDate} (Date this version of the software was released.). This is the underlying object with id, value and extensions. The accessor "getReleaseDate" gives direct access to the value
*/
public CapabilityStatementSoftwareComponent setReleaseDateElement(DateTimeType value) {
this.releaseDate = value;
return this;
}
/**
* @return Date this version of the software was released.
*/
public Date getReleaseDate() {
return this.releaseDate == null ? null : this.releaseDate.getValue();
}
/**
* @param value Date this version of the software was released.
*/
public CapabilityStatementSoftwareComponent setReleaseDate(Date value) {
if (value == null)
this.releaseDate = null;
else {
if (this.releaseDate == null)
this.releaseDate = new DateTimeType();
this.releaseDate.setValue(value);
}
return this;
}
protected void listChildren(List children) {
super.listChildren(children);
children.add(new Property("name", "string", "Name software is known by.", 0, 1, name));
children.add(new Property("version", "string", "The version identifier for the software covered by this statement.", 0, 1, version));
children.add(new Property("releaseDate", "dateTime", "Date this version of the software was released.", 0, 1, releaseDate));
}
@Override
public Property getNamedProperty(int _hash, String _name, boolean _checkValid) throws FHIRException {
switch (_hash) {
case 3373707: /*name*/ return new Property("name", "string", "Name software is known by.", 0, 1, name);
case 351608024: /*version*/ return new Property("version", "string", "The version identifier for the software covered by this statement.", 0, 1, version);
case 212873301: /*releaseDate*/ return new Property("releaseDate", "dateTime", "Date this version of the software was released.", 0, 1, releaseDate);
default: return super.getNamedProperty(_hash, _name, _checkValid);
}
}
@Override
public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException {
switch (hash) {
case 3373707: /*name*/ return this.name == null ? new Base[0] : new Base[] {this.name}; // StringType
case 351608024: /*version*/ return this.version == null ? new Base[0] : new Base[] {this.version}; // StringType
case 212873301: /*releaseDate*/ return this.releaseDate == null ? new Base[0] : new Base[] {this.releaseDate}; // DateTimeType
default: return super.getProperty(hash, name, checkValid);
}
}
@Override
public Base setProperty(int hash, String name, Base value) throws FHIRException {
switch (hash) {
case 3373707: // name
this.name = castToString(value); // StringType
return value;
case 351608024: // version
this.version = castToString(value); // StringType
return value;
case 212873301: // releaseDate
this.releaseDate = castToDateTime(value); // DateTimeType
return value;
default: return super.setProperty(hash, name, value);
}
}
@Override
public Base setProperty(String name, Base value) throws FHIRException {
if (name.equals("name")) {
this.name = castToString(value); // StringType
} else if (name.equals("version")) {
this.version = castToString(value); // StringType
} else if (name.equals("releaseDate")) {
this.releaseDate = castToDateTime(value); // DateTimeType
} else
return super.setProperty(name, value);
return value;
}
@Override
public Base makeProperty(int hash, String name) throws FHIRException {
switch (hash) {
case 3373707: return getNameElement();
case 351608024: return getVersionElement();
case 212873301: return getReleaseDateElement();
default: return super.makeProperty(hash, name);
}
}
@Override
public String[] getTypesForProperty(int hash, String name) throws FHIRException {
switch (hash) {
case 3373707: /*name*/ return new String[] {"string"};
case 351608024: /*version*/ return new String[] {"string"};
case 212873301: /*releaseDate*/ return new String[] {"dateTime"};
default: return super.getTypesForProperty(hash, name);
}
}
@Override
public Base addChild(String name) throws FHIRException {
if (name.equals("name")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.name");
}
else if (name.equals("version")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.version");
}
else if (name.equals("releaseDate")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.releaseDate");
}
else
return super.addChild(name);
}
public CapabilityStatementSoftwareComponent copy() {
CapabilityStatementSoftwareComponent dst = new CapabilityStatementSoftwareComponent();
copyValues(dst);
dst.name = name == null ? null : name.copy();
dst.version = version == null ? null : version.copy();
dst.releaseDate = releaseDate == null ? null : releaseDate.copy();
return dst;
}
@Override
public boolean equalsDeep(Base other_) {
if (!super.equalsDeep(other_))
return false;
if (!(other_ instanceof CapabilityStatementSoftwareComponent))
return false;
CapabilityStatementSoftwareComponent o = (CapabilityStatementSoftwareComponent) other_;
return compareDeep(name, o.name, true) && compareDeep(version, o.version, true) && compareDeep(releaseDate, o.releaseDate, true)
;
}
@Override
public boolean equalsShallow(Base other_) {
if (!super.equalsShallow(other_))
return false;
if (!(other_ instanceof CapabilityStatementSoftwareComponent))
return false;
CapabilityStatementSoftwareComponent o = (CapabilityStatementSoftwareComponent) other_;
return compareValues(name, o.name, true) && compareValues(version, o.version, true) && compareValues(releaseDate, o.releaseDate, true)
;
}
public boolean isEmpty() {
return super.isEmpty() && ca.uhn.fhir.util.ElementUtil.isEmpty(name, version, releaseDate
);
}
public String fhirType() {
return "CapabilityStatement.software";
}
}
@Block()
public static class CapabilityStatementImplementationComponent extends BackboneElement implements IBaseBackboneElement {
/**
* Information about the specific installation that this capability statement relates to.
*/
@Child(name = "description", type = {StringType.class}, order=1, min=1, max=1, modifier=false, summary=true)
@Description(shortDefinition="Describes this specific instance", formalDefinition="Information about the specific installation that this capability statement relates to." )
protected StringType description;
/**
* An absolute base URL for the implementation. This forms the base for REST interfaces as well as the mailbox and document interfaces.
*/
@Child(name = "url", type = {UriType.class}, order=2, min=0, max=1, modifier=false, summary=true)
@Description(shortDefinition="Base URL for the installation", formalDefinition="An absolute base URL for the implementation. This forms the base for REST interfaces as well as the mailbox and document interfaces." )
protected UriType url;
private static final long serialVersionUID = -289238508L;
/**
* Constructor
*/
public CapabilityStatementImplementationComponent() {
super();
}
/**
* Constructor
*/
public CapabilityStatementImplementationComponent(StringType description) {
super();
this.description = description;
}
/**
* @return {@link #description} (Information about the specific installation that this capability statement relates to.). This is the underlying object with id, value and extensions. The accessor "getDescription" gives direct access to the value
*/
public StringType getDescriptionElement() {
if (this.description == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementImplementationComponent.description");
else if (Configuration.doAutoCreate())
this.description = new StringType(); // bb
return this.description;
}
public boolean hasDescriptionElement() {
return this.description != null && !this.description.isEmpty();
}
public boolean hasDescription() {
return this.description != null && !this.description.isEmpty();
}
/**
* @param value {@link #description} (Information about the specific installation that this capability statement relates to.). This is the underlying object with id, value and extensions. The accessor "getDescription" gives direct access to the value
*/
public CapabilityStatementImplementationComponent setDescriptionElement(StringType value) {
this.description = value;
return this;
}
/**
* @return Information about the specific installation that this capability statement relates to.
*/
public String getDescription() {
return this.description == null ? null : this.description.getValue();
}
/**
* @param value Information about the specific installation that this capability statement relates to.
*/
public CapabilityStatementImplementationComponent setDescription(String value) {
if (this.description == null)
this.description = new StringType();
this.description.setValue(value);
return this;
}
/**
* @return {@link #url} (An absolute base URL for the implementation. This forms the base for REST interfaces as well as the mailbox and document interfaces.). This is the underlying object with id, value and extensions. The accessor "getUrl" gives direct access to the value
*/
public UriType getUrlElement() {
if (this.url == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementImplementationComponent.url");
else if (Configuration.doAutoCreate())
this.url = new UriType(); // bb
return this.url;
}
public boolean hasUrlElement() {
return this.url != null && !this.url.isEmpty();
}
public boolean hasUrl() {
return this.url != null && !this.url.isEmpty();
}
/**
* @param value {@link #url} (An absolute base URL for the implementation. This forms the base for REST interfaces as well as the mailbox and document interfaces.). This is the underlying object with id, value and extensions. The accessor "getUrl" gives direct access to the value
*/
public CapabilityStatementImplementationComponent setUrlElement(UriType value) {
this.url = value;
return this;
}
/**
* @return An absolute base URL for the implementation. This forms the base for REST interfaces as well as the mailbox and document interfaces.
*/
public String getUrl() {
return this.url == null ? null : this.url.getValue();
}
/**
* @param value An absolute base URL for the implementation. This forms the base for REST interfaces as well as the mailbox and document interfaces.
*/
public CapabilityStatementImplementationComponent setUrl(String value) {
if (Utilities.noString(value))
this.url = null;
else {
if (this.url == null)
this.url = new UriType();
this.url.setValue(value);
}
return this;
}
protected void listChildren(List children) {
super.listChildren(children);
children.add(new Property("description", "string", "Information about the specific installation that this capability statement relates to.", 0, 1, description));
children.add(new Property("url", "uri", "An absolute base URL for the implementation. This forms the base for REST interfaces as well as the mailbox and document interfaces.", 0, 1, url));
}
@Override
public Property getNamedProperty(int _hash, String _name, boolean _checkValid) throws FHIRException {
switch (_hash) {
case -1724546052: /*description*/ return new Property("description", "string", "Information about the specific installation that this capability statement relates to.", 0, 1, description);
case 116079: /*url*/ return new Property("url", "uri", "An absolute base URL for the implementation. This forms the base for REST interfaces as well as the mailbox and document interfaces.", 0, 1, url);
default: return super.getNamedProperty(_hash, _name, _checkValid);
}
}
@Override
public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException {
switch (hash) {
case -1724546052: /*description*/ return this.description == null ? new Base[0] : new Base[] {this.description}; // StringType
case 116079: /*url*/ return this.url == null ? new Base[0] : new Base[] {this.url}; // UriType
default: return super.getProperty(hash, name, checkValid);
}
}
@Override
public Base setProperty(int hash, String name, Base value) throws FHIRException {
switch (hash) {
case -1724546052: // description
this.description = castToString(value); // StringType
return value;
case 116079: // url
this.url = castToUri(value); // UriType
return value;
default: return super.setProperty(hash, name, value);
}
}
@Override
public Base setProperty(String name, Base value) throws FHIRException {
if (name.equals("description")) {
this.description = castToString(value); // StringType
} else if (name.equals("url")) {
this.url = castToUri(value); // UriType
} else
return super.setProperty(name, value);
return value;
}
@Override
public Base makeProperty(int hash, String name) throws FHIRException {
switch (hash) {
case -1724546052: return getDescriptionElement();
case 116079: return getUrlElement();
default: return super.makeProperty(hash, name);
}
}
@Override
public String[] getTypesForProperty(int hash, String name) throws FHIRException {
switch (hash) {
case -1724546052: /*description*/ return new String[] {"string"};
case 116079: /*url*/ return new String[] {"uri"};
default: return super.getTypesForProperty(hash, name);
}
}
@Override
public Base addChild(String name) throws FHIRException {
if (name.equals("description")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.description");
}
else if (name.equals("url")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.url");
}
else
return super.addChild(name);
}
public CapabilityStatementImplementationComponent copy() {
CapabilityStatementImplementationComponent dst = new CapabilityStatementImplementationComponent();
copyValues(dst);
dst.description = description == null ? null : description.copy();
dst.url = url == null ? null : url.copy();
return dst;
}
@Override
public boolean equalsDeep(Base other_) {
if (!super.equalsDeep(other_))
return false;
if (!(other_ instanceof CapabilityStatementImplementationComponent))
return false;
CapabilityStatementImplementationComponent o = (CapabilityStatementImplementationComponent) other_;
return compareDeep(description, o.description, true) && compareDeep(url, o.url, true);
}
@Override
public boolean equalsShallow(Base other_) {
if (!super.equalsShallow(other_))
return false;
if (!(other_ instanceof CapabilityStatementImplementationComponent))
return false;
CapabilityStatementImplementationComponent o = (CapabilityStatementImplementationComponent) other_;
return compareValues(description, o.description, true) && compareValues(url, o.url, true);
}
public boolean isEmpty() {
return super.isEmpty() && ca.uhn.fhir.util.ElementUtil.isEmpty(description, url);
}
public String fhirType() {
return "CapabilityStatement.implementation";
}
}
@Block()
public static class CapabilityStatementRestComponent extends BackboneElement implements IBaseBackboneElement {
/**
* Identifies whether this portion of the statement is describing the ability to initiate or receive restful operations.
*/
@Child(name = "mode", type = {CodeType.class}, order=1, min=1, max=1, modifier=false, summary=true)
@Description(shortDefinition="client | server", formalDefinition="Identifies whether this portion of the statement is describing the ability to initiate or receive restful operations." )
@ca.uhn.fhir.model.api.annotation.Binding(valueSet="http://hl7.org/fhir/ValueSet/restful-capability-mode")
protected Enumeration mode;
/**
* Information about the system's restful capabilities that apply across all applications, such as security.
*/
@Child(name = "documentation", type = {StringType.class}, order=2, min=0, max=1, modifier=false, summary=false)
@Description(shortDefinition="General description of implementation", formalDefinition="Information about the system's restful capabilities that apply across all applications, such as security." )
protected StringType documentation;
/**
* Information about security implementation from an interface perspective - what a client needs to know.
*/
@Child(name = "security", type = {}, order=3, min=0, max=1, modifier=false, summary=true)
@Description(shortDefinition="Information about security of implementation", formalDefinition="Information about security implementation from an interface perspective - what a client needs to know." )
protected CapabilityStatementRestSecurityComponent security;
/**
* A specification of the restful capabilities of the solution for a specific resource type.
*/
@Child(name = "resource", type = {}, order=4, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=true)
@Description(shortDefinition="Resource served on the REST interface", formalDefinition="A specification of the restful capabilities of the solution for a specific resource type." )
protected List resource;
/**
* A specification of restful operations supported by the system.
*/
@Child(name = "interaction", type = {}, order=5, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false)
@Description(shortDefinition="What operations are supported?", formalDefinition="A specification of restful operations supported by the system." )
protected List interaction;
/**
* Search parameters that are supported for searching all resources for implementations to support and/or make use of - either references to ones defined in the specification, or additional ones defined for/by the implementation.
*/
@Child(name = "searchParam", type = {CapabilityStatementRestResourceSearchParamComponent.class}, order=6, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false)
@Description(shortDefinition="Search parameters for searching all resources", formalDefinition="Search parameters that are supported for searching all resources for implementations to support and/or make use of - either references to ones defined in the specification, or additional ones defined for/by the implementation." )
protected List searchParam;
/**
* Definition of an operation or a named query together with its parameters and their meaning and type.
*/
@Child(name = "operation", type = {}, order=7, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=true)
@Description(shortDefinition="Definition of an operation or a custom query", formalDefinition="Definition of an operation or a named query together with its parameters and their meaning and type." )
protected List operation;
/**
* An absolute URI which is a reference to the definition of a compartment that the system supports. The reference is to a CompartmentDefinition resource by its canonical URL .
*/
@Child(name = "compartment", type = {UriType.class}, order=8, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false)
@Description(shortDefinition="Compartments served/used by system", formalDefinition="An absolute URI which is a reference to the definition of a compartment that the system supports. The reference is to a CompartmentDefinition resource by its canonical URL ." )
protected List compartment;
private static final long serialVersionUID = 38012979L;
/**
* Constructor
*/
public CapabilityStatementRestComponent() {
super();
}
/**
* Constructor
*/
public CapabilityStatementRestComponent(Enumeration mode) {
super();
this.mode = mode;
}
/**
* @return {@link #mode} (Identifies whether this portion of the statement is describing the ability to initiate or receive restful operations.). This is the underlying object with id, value and extensions. The accessor "getMode" gives direct access to the value
*/
public Enumeration getModeElement() {
if (this.mode == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementRestComponent.mode");
else if (Configuration.doAutoCreate())
this.mode = new Enumeration(new RestfulCapabilityModeEnumFactory()); // bb
return this.mode;
}
public boolean hasModeElement() {
return this.mode != null && !this.mode.isEmpty();
}
public boolean hasMode() {
return this.mode != null && !this.mode.isEmpty();
}
/**
* @param value {@link #mode} (Identifies whether this portion of the statement is describing the ability to initiate or receive restful operations.). This is the underlying object with id, value and extensions. The accessor "getMode" gives direct access to the value
*/
public CapabilityStatementRestComponent setModeElement(Enumeration value) {
this.mode = value;
return this;
}
/**
* @return Identifies whether this portion of the statement is describing the ability to initiate or receive restful operations.
*/
public RestfulCapabilityMode getMode() {
return this.mode == null ? null : this.mode.getValue();
}
/**
* @param value Identifies whether this portion of the statement is describing the ability to initiate or receive restful operations.
*/
public CapabilityStatementRestComponent setMode(RestfulCapabilityMode value) {
if (this.mode == null)
this.mode = new Enumeration(new RestfulCapabilityModeEnumFactory());
this.mode.setValue(value);
return this;
}
/**
* @return {@link #documentation} (Information about the system's restful capabilities that apply across all applications, such as security.). This is the underlying object with id, value and extensions. The accessor "getDocumentation" gives direct access to the value
*/
public StringType getDocumentationElement() {
if (this.documentation == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementRestComponent.documentation");
else if (Configuration.doAutoCreate())
this.documentation = new StringType(); // bb
return this.documentation;
}
public boolean hasDocumentationElement() {
return this.documentation != null && !this.documentation.isEmpty();
}
public boolean hasDocumentation() {
return this.documentation != null && !this.documentation.isEmpty();
}
/**
* @param value {@link #documentation} (Information about the system's restful capabilities that apply across all applications, such as security.). This is the underlying object with id, value and extensions. The accessor "getDocumentation" gives direct access to the value
*/
public CapabilityStatementRestComponent setDocumentationElement(StringType value) {
this.documentation = value;
return this;
}
/**
* @return Information about the system's restful capabilities that apply across all applications, such as security.
*/
public String getDocumentation() {
return this.documentation == null ? null : this.documentation.getValue();
}
/**
* @param value Information about the system's restful capabilities that apply across all applications, such as security.
*/
public CapabilityStatementRestComponent setDocumentation(String value) {
if (Utilities.noString(value))
this.documentation = null;
else {
if (this.documentation == null)
this.documentation = new StringType();
this.documentation.setValue(value);
}
return this;
}
/**
* @return {@link #security} (Information about security implementation from an interface perspective - what a client needs to know.)
*/
public CapabilityStatementRestSecurityComponent getSecurity() {
if (this.security == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementRestComponent.security");
else if (Configuration.doAutoCreate())
this.security = new CapabilityStatementRestSecurityComponent(); // cc
return this.security;
}
public boolean hasSecurity() {
return this.security != null && !this.security.isEmpty();
}
/**
* @param value {@link #security} (Information about security implementation from an interface perspective - what a client needs to know.)
*/
public CapabilityStatementRestComponent setSecurity(CapabilityStatementRestSecurityComponent value) {
this.security = value;
return this;
}
/**
* @return {@link #resource} (A specification of the restful capabilities of the solution for a specific resource type.)
*/
public List getResource() {
if (this.resource == null)
this.resource = new ArrayList();
return this.resource;
}
/**
* @return Returns a reference to this
for easy method chaining
*/
public CapabilityStatementRestComponent setResource(List theResource) {
this.resource = theResource;
return this;
}
public boolean hasResource() {
if (this.resource == null)
return false;
for (CapabilityStatementRestResourceComponent item : this.resource)
if (!item.isEmpty())
return true;
return false;
}
public CapabilityStatementRestResourceComponent addResource() { //3
CapabilityStatementRestResourceComponent t = new CapabilityStatementRestResourceComponent();
if (this.resource == null)
this.resource = new ArrayList();
this.resource.add(t);
return t;
}
public CapabilityStatementRestComponent addResource(CapabilityStatementRestResourceComponent t) { //3
if (t == null)
return this;
if (this.resource == null)
this.resource = new ArrayList();
this.resource.add(t);
return this;
}
/**
* @return The first repetition of repeating field {@link #resource}, creating it if it does not already exist
*/
public CapabilityStatementRestResourceComponent getResourceFirstRep() {
if (getResource().isEmpty()) {
addResource();
}
return getResource().get(0);
}
/**
* @return {@link #interaction} (A specification of restful operations supported by the system.)
*/
public List getInteraction() {
if (this.interaction == null)
this.interaction = new ArrayList();
return this.interaction;
}
/**
* @return Returns a reference to this
for easy method chaining
*/
public CapabilityStatementRestComponent setInteraction(List theInteraction) {
this.interaction = theInteraction;
return this;
}
public boolean hasInteraction() {
if (this.interaction == null)
return false;
for (SystemInteractionComponent item : this.interaction)
if (!item.isEmpty())
return true;
return false;
}
public SystemInteractionComponent addInteraction() { //3
SystemInteractionComponent t = new SystemInteractionComponent();
if (this.interaction == null)
this.interaction = new ArrayList();
this.interaction.add(t);
return t;
}
public CapabilityStatementRestComponent addInteraction(SystemInteractionComponent t) { //3
if (t == null)
return this;
if (this.interaction == null)
this.interaction = new ArrayList();
this.interaction.add(t);
return this;
}
/**
* @return The first repetition of repeating field {@link #interaction}, creating it if it does not already exist
*/
public SystemInteractionComponent getInteractionFirstRep() {
if (getInteraction().isEmpty()) {
addInteraction();
}
return getInteraction().get(0);
}
/**
* @return {@link #searchParam} (Search parameters that are supported for searching all resources for implementations to support and/or make use of - either references to ones defined in the specification, or additional ones defined for/by the implementation.)
*/
public List getSearchParam() {
if (this.searchParam == null)
this.searchParam = new ArrayList();
return this.searchParam;
}
/**
* @return Returns a reference to this
for easy method chaining
*/
public CapabilityStatementRestComponent setSearchParam(List theSearchParam) {
this.searchParam = theSearchParam;
return this;
}
public boolean hasSearchParam() {
if (this.searchParam == null)
return false;
for (CapabilityStatementRestResourceSearchParamComponent item : this.searchParam)
if (!item.isEmpty())
return true;
return false;
}
public CapabilityStatementRestResourceSearchParamComponent addSearchParam() { //3
CapabilityStatementRestResourceSearchParamComponent t = new CapabilityStatementRestResourceSearchParamComponent();
if (this.searchParam == null)
this.searchParam = new ArrayList();
this.searchParam.add(t);
return t;
}
public CapabilityStatementRestComponent addSearchParam(CapabilityStatementRestResourceSearchParamComponent t) { //3
if (t == null)
return this;
if (this.searchParam == null)
this.searchParam = new ArrayList();
this.searchParam.add(t);
return this;
}
/**
* @return The first repetition of repeating field {@link #searchParam}, creating it if it does not already exist
*/
public CapabilityStatementRestResourceSearchParamComponent getSearchParamFirstRep() {
if (getSearchParam().isEmpty()) {
addSearchParam();
}
return getSearchParam().get(0);
}
/**
* @return {@link #operation} (Definition of an operation or a named query together with its parameters and their meaning and type.)
*/
public List getOperation() {
if (this.operation == null)
this.operation = new ArrayList();
return this.operation;
}
/**
* @return Returns a reference to this
for easy method chaining
*/
public CapabilityStatementRestComponent setOperation(List theOperation) {
this.operation = theOperation;
return this;
}
public boolean hasOperation() {
if (this.operation == null)
return false;
for (CapabilityStatementRestOperationComponent item : this.operation)
if (!item.isEmpty())
return true;
return false;
}
public CapabilityStatementRestOperationComponent addOperation() { //3
CapabilityStatementRestOperationComponent t = new CapabilityStatementRestOperationComponent();
if (this.operation == null)
this.operation = new ArrayList();
this.operation.add(t);
return t;
}
public CapabilityStatementRestComponent addOperation(CapabilityStatementRestOperationComponent t) { //3
if (t == null)
return this;
if (this.operation == null)
this.operation = new ArrayList();
this.operation.add(t);
return this;
}
/**
* @return The first repetition of repeating field {@link #operation}, creating it if it does not already exist
*/
public CapabilityStatementRestOperationComponent getOperationFirstRep() {
if (getOperation().isEmpty()) {
addOperation();
}
return getOperation().get(0);
}
/**
* @return {@link #compartment} (An absolute URI which is a reference to the definition of a compartment that the system supports. The reference is to a CompartmentDefinition resource by its canonical URL .)
*/
public List getCompartment() {
if (this.compartment == null)
this.compartment = new ArrayList();
return this.compartment;
}
/**
* @return Returns a reference to this
for easy method chaining
*/
public CapabilityStatementRestComponent setCompartment(List theCompartment) {
this.compartment = theCompartment;
return this;
}
public boolean hasCompartment() {
if (this.compartment == null)
return false;
for (UriType item : this.compartment)
if (!item.isEmpty())
return true;
return false;
}
/**
* @return {@link #compartment} (An absolute URI which is a reference to the definition of a compartment that the system supports. The reference is to a CompartmentDefinition resource by its canonical URL .)
*/
public UriType addCompartmentElement() {//2
UriType t = new UriType();
if (this.compartment == null)
this.compartment = new ArrayList();
this.compartment.add(t);
return t;
}
/**
* @param value {@link #compartment} (An absolute URI which is a reference to the definition of a compartment that the system supports. The reference is to a CompartmentDefinition resource by its canonical URL .)
*/
public CapabilityStatementRestComponent addCompartment(String value) { //1
UriType t = new UriType();
t.setValue(value);
if (this.compartment == null)
this.compartment = new ArrayList();
this.compartment.add(t);
return this;
}
/**
* @param value {@link #compartment} (An absolute URI which is a reference to the definition of a compartment that the system supports. The reference is to a CompartmentDefinition resource by its canonical URL .)
*/
public boolean hasCompartment(String value) {
if (this.compartment == null)
return false;
for (UriType v : this.compartment)
if (v.getValue().equals(value)) // uri
return true;
return false;
}
protected void listChildren(List children) {
super.listChildren(children);
children.add(new Property("mode", "code", "Identifies whether this portion of the statement is describing the ability to initiate or receive restful operations.", 0, 1, mode));
children.add(new Property("documentation", "string", "Information about the system's restful capabilities that apply across all applications, such as security.", 0, 1, documentation));
children.add(new Property("security", "", "Information about security implementation from an interface perspective - what a client needs to know.", 0, 1, security));
children.add(new Property("resource", "", "A specification of the restful capabilities of the solution for a specific resource type.", 0, java.lang.Integer.MAX_VALUE, resource));
children.add(new Property("interaction", "", "A specification of restful operations supported by the system.", 0, java.lang.Integer.MAX_VALUE, interaction));
children.add(new Property("searchParam", "@CapabilityStatement.rest.resource.searchParam", "Search parameters that are supported for searching all resources for implementations to support and/or make use of - either references to ones defined in the specification, or additional ones defined for/by the implementation.", 0, java.lang.Integer.MAX_VALUE, searchParam));
children.add(new Property("operation", "", "Definition of an operation or a named query together with its parameters and their meaning and type.", 0, java.lang.Integer.MAX_VALUE, operation));
children.add(new Property("compartment", "uri", "An absolute URI which is a reference to the definition of a compartment that the system supports. The reference is to a CompartmentDefinition resource by its canonical URL .", 0, java.lang.Integer.MAX_VALUE, compartment));
}
@Override
public Property getNamedProperty(int _hash, String _name, boolean _checkValid) throws FHIRException {
switch (_hash) {
case 3357091: /*mode*/ return new Property("mode", "code", "Identifies whether this portion of the statement is describing the ability to initiate or receive restful operations.", 0, 1, mode);
case 1587405498: /*documentation*/ return new Property("documentation", "string", "Information about the system's restful capabilities that apply across all applications, such as security.", 0, 1, documentation);
case 949122880: /*security*/ return new Property("security", "", "Information about security implementation from an interface perspective - what a client needs to know.", 0, 1, security);
case -341064690: /*resource*/ return new Property("resource", "", "A specification of the restful capabilities of the solution for a specific resource type.", 0, java.lang.Integer.MAX_VALUE, resource);
case 1844104722: /*interaction*/ return new Property("interaction", "", "A specification of restful operations supported by the system.", 0, java.lang.Integer.MAX_VALUE, interaction);
case -553645115: /*searchParam*/ return new Property("searchParam", "@CapabilityStatement.rest.resource.searchParam", "Search parameters that are supported for searching all resources for implementations to support and/or make use of - either references to ones defined in the specification, or additional ones defined for/by the implementation.", 0, java.lang.Integer.MAX_VALUE, searchParam);
case 1662702951: /*operation*/ return new Property("operation", "", "Definition of an operation or a named query together with its parameters and their meaning and type.", 0, java.lang.Integer.MAX_VALUE, operation);
case -397756334: /*compartment*/ return new Property("compartment", "uri", "An absolute URI which is a reference to the definition of a compartment that the system supports. The reference is to a CompartmentDefinition resource by its canonical URL .", 0, java.lang.Integer.MAX_VALUE, compartment);
default: return super.getNamedProperty(_hash, _name, _checkValid);
}
}
@Override
public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException {
switch (hash) {
case 3357091: /*mode*/ return this.mode == null ? new Base[0] : new Base[] {this.mode}; // Enumeration
case 1587405498: /*documentation*/ return this.documentation == null ? new Base[0] : new Base[] {this.documentation}; // StringType
case 949122880: /*security*/ return this.security == null ? new Base[0] : new Base[] {this.security}; // CapabilityStatementRestSecurityComponent
case -341064690: /*resource*/ return this.resource == null ? new Base[0] : this.resource.toArray(new Base[this.resource.size()]); // CapabilityStatementRestResourceComponent
case 1844104722: /*interaction*/ return this.interaction == null ? new Base[0] : this.interaction.toArray(new Base[this.interaction.size()]); // SystemInteractionComponent
case -553645115: /*searchParam*/ return this.searchParam == null ? new Base[0] : this.searchParam.toArray(new Base[this.searchParam.size()]); // CapabilityStatementRestResourceSearchParamComponent
case 1662702951: /*operation*/ return this.operation == null ? new Base[0] : this.operation.toArray(new Base[this.operation.size()]); // CapabilityStatementRestOperationComponent
case -397756334: /*compartment*/ return this.compartment == null ? new Base[0] : this.compartment.toArray(new Base[this.compartment.size()]); // UriType
default: return super.getProperty(hash, name, checkValid);
}
}
@Override
public Base setProperty(int hash, String name, Base value) throws FHIRException {
switch (hash) {
case 3357091: // mode
value = new RestfulCapabilityModeEnumFactory().fromType(castToCode(value));
this.mode = (Enumeration) value; // Enumeration
return value;
case 1587405498: // documentation
this.documentation = castToString(value); // StringType
return value;
case 949122880: // security
this.security = (CapabilityStatementRestSecurityComponent) value; // CapabilityStatementRestSecurityComponent
return value;
case -341064690: // resource
this.getResource().add((CapabilityStatementRestResourceComponent) value); // CapabilityStatementRestResourceComponent
return value;
case 1844104722: // interaction
this.getInteraction().add((SystemInteractionComponent) value); // SystemInteractionComponent
return value;
case -553645115: // searchParam
this.getSearchParam().add((CapabilityStatementRestResourceSearchParamComponent) value); // CapabilityStatementRestResourceSearchParamComponent
return value;
case 1662702951: // operation
this.getOperation().add((CapabilityStatementRestOperationComponent) value); // CapabilityStatementRestOperationComponent
return value;
case -397756334: // compartment
this.getCompartment().add(castToUri(value)); // UriType
return value;
default: return super.setProperty(hash, name, value);
}
}
@Override
public Base setProperty(String name, Base value) throws FHIRException {
if (name.equals("mode")) {
value = new RestfulCapabilityModeEnumFactory().fromType(castToCode(value));
this.mode = (Enumeration) value; // Enumeration
} else if (name.equals("documentation")) {
this.documentation = castToString(value); // StringType
} else if (name.equals("security")) {
this.security = (CapabilityStatementRestSecurityComponent) value; // CapabilityStatementRestSecurityComponent
} else if (name.equals("resource")) {
this.getResource().add((CapabilityStatementRestResourceComponent) value);
} else if (name.equals("interaction")) {
this.getInteraction().add((SystemInteractionComponent) value);
} else if (name.equals("searchParam")) {
this.getSearchParam().add((CapabilityStatementRestResourceSearchParamComponent) value);
} else if (name.equals("operation")) {
this.getOperation().add((CapabilityStatementRestOperationComponent) value);
} else if (name.equals("compartment")) {
this.getCompartment().add(castToUri(value));
} else
return super.setProperty(name, value);
return value;
}
@Override
public Base makeProperty(int hash, String name) throws FHIRException {
switch (hash) {
case 3357091: return getModeElement();
case 1587405498: return getDocumentationElement();
case 949122880: return getSecurity();
case -341064690: return addResource();
case 1844104722: return addInteraction();
case -553645115: return addSearchParam();
case 1662702951: return addOperation();
case -397756334: return addCompartmentElement();
default: return super.makeProperty(hash, name);
}
}
@Override
public String[] getTypesForProperty(int hash, String name) throws FHIRException {
switch (hash) {
case 3357091: /*mode*/ return new String[] {"code"};
case 1587405498: /*documentation*/ return new String[] {"string"};
case 949122880: /*security*/ return new String[] {};
case -341064690: /*resource*/ return new String[] {};
case 1844104722: /*interaction*/ return new String[] {};
case -553645115: /*searchParam*/ return new String[] {"@CapabilityStatement.rest.resource.searchParam"};
case 1662702951: /*operation*/ return new String[] {};
case -397756334: /*compartment*/ return new String[] {"uri"};
default: return super.getTypesForProperty(hash, name);
}
}
@Override
public Base addChild(String name) throws FHIRException {
if (name.equals("mode")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.mode");
}
else if (name.equals("documentation")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.documentation");
}
else if (name.equals("security")) {
this.security = new CapabilityStatementRestSecurityComponent();
return this.security;
}
else if (name.equals("resource")) {
return addResource();
}
else if (name.equals("interaction")) {
return addInteraction();
}
else if (name.equals("searchParam")) {
return addSearchParam();
}
else if (name.equals("operation")) {
return addOperation();
}
else if (name.equals("compartment")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.compartment");
}
else
return super.addChild(name);
}
public CapabilityStatementRestComponent copy() {
CapabilityStatementRestComponent dst = new CapabilityStatementRestComponent();
copyValues(dst);
dst.mode = mode == null ? null : mode.copy();
dst.documentation = documentation == null ? null : documentation.copy();
dst.security = security == null ? null : security.copy();
if (resource != null) {
dst.resource = new ArrayList();
for (CapabilityStatementRestResourceComponent i : resource)
dst.resource.add(i.copy());
};
if (interaction != null) {
dst.interaction = new ArrayList();
for (SystemInteractionComponent i : interaction)
dst.interaction.add(i.copy());
};
if (searchParam != null) {
dst.searchParam = new ArrayList();
for (CapabilityStatementRestResourceSearchParamComponent i : searchParam)
dst.searchParam.add(i.copy());
};
if (operation != null) {
dst.operation = new ArrayList();
for (CapabilityStatementRestOperationComponent i : operation)
dst.operation.add(i.copy());
};
if (compartment != null) {
dst.compartment = new ArrayList();
for (UriType i : compartment)
dst.compartment.add(i.copy());
};
return dst;
}
@Override
public boolean equalsDeep(Base other_) {
if (!super.equalsDeep(other_))
return false;
if (!(other_ instanceof CapabilityStatementRestComponent))
return false;
CapabilityStatementRestComponent o = (CapabilityStatementRestComponent) other_;
return compareDeep(mode, o.mode, true) && compareDeep(documentation, o.documentation, true) && compareDeep(security, o.security, true)
&& compareDeep(resource, o.resource, true) && compareDeep(interaction, o.interaction, true) && compareDeep(searchParam, o.searchParam, true)
&& compareDeep(operation, o.operation, true) && compareDeep(compartment, o.compartment, true);
}
@Override
public boolean equalsShallow(Base other_) {
if (!super.equalsShallow(other_))
return false;
if (!(other_ instanceof CapabilityStatementRestComponent))
return false;
CapabilityStatementRestComponent o = (CapabilityStatementRestComponent) other_;
return compareValues(mode, o.mode, true) && compareValues(documentation, o.documentation, true) && compareValues(compartment, o.compartment, true)
;
}
public boolean isEmpty() {
return super.isEmpty() && ca.uhn.fhir.util.ElementUtil.isEmpty(mode, documentation, security
, resource, interaction, searchParam, operation, compartment);
}
public String fhirType() {
return "CapabilityStatement.rest";
}
}
@Block()
public static class CapabilityStatementRestSecurityComponent extends BackboneElement implements IBaseBackboneElement {
/**
* Server adds CORS headers when responding to requests - this enables javascript applications to use the server.
*/
@Child(name = "cors", type = {BooleanType.class}, order=1, min=0, max=1, modifier=false, summary=true)
@Description(shortDefinition="Adds CORS Headers (http://enable-cors.org/)", formalDefinition="Server adds CORS headers when responding to requests - this enables javascript applications to use the server." )
protected BooleanType cors;
/**
* Types of security services that are supported/required by the system.
*/
@Child(name = "service", type = {CodeableConcept.class}, order=2, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=true)
@Description(shortDefinition="OAuth | SMART-on-FHIR | NTLM | Basic | Kerberos | Certificates", formalDefinition="Types of security services that are supported/required by the system." )
@ca.uhn.fhir.model.api.annotation.Binding(valueSet="http://hl7.org/fhir/ValueSet/restful-security-service")
protected List service;
/**
* General description of how security works.
*/
@Child(name = "description", type = {StringType.class}, order=3, min=0, max=1, modifier=false, summary=false)
@Description(shortDefinition="General description of how security works", formalDefinition="General description of how security works." )
protected StringType description;
/**
* Certificates associated with security profiles.
*/
@Child(name = "certificate", type = {}, order=4, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false)
@Description(shortDefinition="Certificates associated with security profiles", formalDefinition="Certificates associated with security profiles." )
protected List certificate;
private static final long serialVersionUID = 1081654002L;
/**
* Constructor
*/
public CapabilityStatementRestSecurityComponent() {
super();
}
/**
* @return {@link #cors} (Server adds CORS headers when responding to requests - this enables javascript applications to use the server.). This is the underlying object with id, value and extensions. The accessor "getCors" gives direct access to the value
*/
public BooleanType getCorsElement() {
if (this.cors == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementRestSecurityComponent.cors");
else if (Configuration.doAutoCreate())
this.cors = new BooleanType(); // bb
return this.cors;
}
public boolean hasCorsElement() {
return this.cors != null && !this.cors.isEmpty();
}
public boolean hasCors() {
return this.cors != null && !this.cors.isEmpty();
}
/**
* @param value {@link #cors} (Server adds CORS headers when responding to requests - this enables javascript applications to use the server.). This is the underlying object with id, value and extensions. The accessor "getCors" gives direct access to the value
*/
public CapabilityStatementRestSecurityComponent setCorsElement(BooleanType value) {
this.cors = value;
return this;
}
/**
* @return Server adds CORS headers when responding to requests - this enables javascript applications to use the server.
*/
public boolean getCors() {
return this.cors == null || this.cors.isEmpty() ? false : this.cors.getValue();
}
/**
* @param value Server adds CORS headers when responding to requests - this enables javascript applications to use the server.
*/
public CapabilityStatementRestSecurityComponent setCors(boolean value) {
if (this.cors == null)
this.cors = new BooleanType();
this.cors.setValue(value);
return this;
}
/**
* @return {@link #service} (Types of security services that are supported/required by the system.)
*/
public List getService() {
if (this.service == null)
this.service = new ArrayList();
return this.service;
}
/**
* @return Returns a reference to this
for easy method chaining
*/
public CapabilityStatementRestSecurityComponent setService(List theService) {
this.service = theService;
return this;
}
public boolean hasService() {
if (this.service == null)
return false;
for (CodeableConcept item : this.service)
if (!item.isEmpty())
return true;
return false;
}
public CodeableConcept addService() { //3
CodeableConcept t = new CodeableConcept();
if (this.service == null)
this.service = new ArrayList();
this.service.add(t);
return t;
}
public CapabilityStatementRestSecurityComponent addService(CodeableConcept t) { //3
if (t == null)
return this;
if (this.service == null)
this.service = new ArrayList();
this.service.add(t);
return this;
}
/**
* @return The first repetition of repeating field {@link #service}, creating it if it does not already exist
*/
public CodeableConcept getServiceFirstRep() {
if (getService().isEmpty()) {
addService();
}
return getService().get(0);
}
/**
* @return {@link #description} (General description of how security works.). This is the underlying object with id, value and extensions. The accessor "getDescription" gives direct access to the value
*/
public StringType getDescriptionElement() {
if (this.description == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementRestSecurityComponent.description");
else if (Configuration.doAutoCreate())
this.description = new StringType(); // bb
return this.description;
}
public boolean hasDescriptionElement() {
return this.description != null && !this.description.isEmpty();
}
public boolean hasDescription() {
return this.description != null && !this.description.isEmpty();
}
/**
* @param value {@link #description} (General description of how security works.). This is the underlying object with id, value and extensions. The accessor "getDescription" gives direct access to the value
*/
public CapabilityStatementRestSecurityComponent setDescriptionElement(StringType value) {
this.description = value;
return this;
}
/**
* @return General description of how security works.
*/
public String getDescription() {
return this.description == null ? null : this.description.getValue();
}
/**
* @param value General description of how security works.
*/
public CapabilityStatementRestSecurityComponent setDescription(String value) {
if (Utilities.noString(value))
this.description = null;
else {
if (this.description == null)
this.description = new StringType();
this.description.setValue(value);
}
return this;
}
/**
* @return {@link #certificate} (Certificates associated with security profiles.)
*/
public List getCertificate() {
if (this.certificate == null)
this.certificate = new ArrayList();
return this.certificate;
}
/**
* @return Returns a reference to this
for easy method chaining
*/
public CapabilityStatementRestSecurityComponent setCertificate(List theCertificate) {
this.certificate = theCertificate;
return this;
}
public boolean hasCertificate() {
if (this.certificate == null)
return false;
for (CapabilityStatementRestSecurityCertificateComponent item : this.certificate)
if (!item.isEmpty())
return true;
return false;
}
public CapabilityStatementRestSecurityCertificateComponent addCertificate() { //3
CapabilityStatementRestSecurityCertificateComponent t = new CapabilityStatementRestSecurityCertificateComponent();
if (this.certificate == null)
this.certificate = new ArrayList();
this.certificate.add(t);
return t;
}
public CapabilityStatementRestSecurityComponent addCertificate(CapabilityStatementRestSecurityCertificateComponent t) { //3
if (t == null)
return this;
if (this.certificate == null)
this.certificate = new ArrayList();
this.certificate.add(t);
return this;
}
/**
* @return The first repetition of repeating field {@link #certificate}, creating it if it does not already exist
*/
public CapabilityStatementRestSecurityCertificateComponent getCertificateFirstRep() {
if (getCertificate().isEmpty()) {
addCertificate();
}
return getCertificate().get(0);
}
protected void listChildren(List children) {
super.listChildren(children);
children.add(new Property("cors", "boolean", "Server adds CORS headers when responding to requests - this enables javascript applications to use the server.", 0, 1, cors));
children.add(new Property("service", "CodeableConcept", "Types of security services that are supported/required by the system.", 0, java.lang.Integer.MAX_VALUE, service));
children.add(new Property("description", "string", "General description of how security works.", 0, 1, description));
children.add(new Property("certificate", "", "Certificates associated with security profiles.", 0, java.lang.Integer.MAX_VALUE, certificate));
}
@Override
public Property getNamedProperty(int _hash, String _name, boolean _checkValid) throws FHIRException {
switch (_hash) {
case 3059629: /*cors*/ return new Property("cors", "boolean", "Server adds CORS headers when responding to requests - this enables javascript applications to use the server.", 0, 1, cors);
case 1984153269: /*service*/ return new Property("service", "CodeableConcept", "Types of security services that are supported/required by the system.", 0, java.lang.Integer.MAX_VALUE, service);
case -1724546052: /*description*/ return new Property("description", "string", "General description of how security works.", 0, 1, description);
case 1952399767: /*certificate*/ return new Property("certificate", "", "Certificates associated with security profiles.", 0, java.lang.Integer.MAX_VALUE, certificate);
default: return super.getNamedProperty(_hash, _name, _checkValid);
}
}
@Override
public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException {
switch (hash) {
case 3059629: /*cors*/ return this.cors == null ? new Base[0] : new Base[] {this.cors}; // BooleanType
case 1984153269: /*service*/ return this.service == null ? new Base[0] : this.service.toArray(new Base[this.service.size()]); // CodeableConcept
case -1724546052: /*description*/ return this.description == null ? new Base[0] : new Base[] {this.description}; // StringType
case 1952399767: /*certificate*/ return this.certificate == null ? new Base[0] : this.certificate.toArray(new Base[this.certificate.size()]); // CapabilityStatementRestSecurityCertificateComponent
default: return super.getProperty(hash, name, checkValid);
}
}
@Override
public Base setProperty(int hash, String name, Base value) throws FHIRException {
switch (hash) {
case 3059629: // cors
this.cors = castToBoolean(value); // BooleanType
return value;
case 1984153269: // service
this.getService().add(castToCodeableConcept(value)); // CodeableConcept
return value;
case -1724546052: // description
this.description = castToString(value); // StringType
return value;
case 1952399767: // certificate
this.getCertificate().add((CapabilityStatementRestSecurityCertificateComponent) value); // CapabilityStatementRestSecurityCertificateComponent
return value;
default: return super.setProperty(hash, name, value);
}
}
@Override
public Base setProperty(String name, Base value) throws FHIRException {
if (name.equals("cors")) {
this.cors = castToBoolean(value); // BooleanType
} else if (name.equals("service")) {
this.getService().add(castToCodeableConcept(value));
} else if (name.equals("description")) {
this.description = castToString(value); // StringType
} else if (name.equals("certificate")) {
this.getCertificate().add((CapabilityStatementRestSecurityCertificateComponent) value);
} else
return super.setProperty(name, value);
return value;
}
@Override
public Base makeProperty(int hash, String name) throws FHIRException {
switch (hash) {
case 3059629: return getCorsElement();
case 1984153269: return addService();
case -1724546052: return getDescriptionElement();
case 1952399767: return addCertificate();
default: return super.makeProperty(hash, name);
}
}
@Override
public String[] getTypesForProperty(int hash, String name) throws FHIRException {
switch (hash) {
case 3059629: /*cors*/ return new String[] {"boolean"};
case 1984153269: /*service*/ return new String[] {"CodeableConcept"};
case -1724546052: /*description*/ return new String[] {"string"};
case 1952399767: /*certificate*/ return new String[] {};
default: return super.getTypesForProperty(hash, name);
}
}
@Override
public Base addChild(String name) throws FHIRException {
if (name.equals("cors")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.cors");
}
else if (name.equals("service")) {
return addService();
}
else if (name.equals("description")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.description");
}
else if (name.equals("certificate")) {
return addCertificate();
}
else
return super.addChild(name);
}
public CapabilityStatementRestSecurityComponent copy() {
CapabilityStatementRestSecurityComponent dst = new CapabilityStatementRestSecurityComponent();
copyValues(dst);
dst.cors = cors == null ? null : cors.copy();
if (service != null) {
dst.service = new ArrayList();
for (CodeableConcept i : service)
dst.service.add(i.copy());
};
dst.description = description == null ? null : description.copy();
if (certificate != null) {
dst.certificate = new ArrayList();
for (CapabilityStatementRestSecurityCertificateComponent i : certificate)
dst.certificate.add(i.copy());
};
return dst;
}
@Override
public boolean equalsDeep(Base other_) {
if (!super.equalsDeep(other_))
return false;
if (!(other_ instanceof CapabilityStatementRestSecurityComponent))
return false;
CapabilityStatementRestSecurityComponent o = (CapabilityStatementRestSecurityComponent) other_;
return compareDeep(cors, o.cors, true) && compareDeep(service, o.service, true) && compareDeep(description, o.description, true)
&& compareDeep(certificate, o.certificate, true);
}
@Override
public boolean equalsShallow(Base other_) {
if (!super.equalsShallow(other_))
return false;
if (!(other_ instanceof CapabilityStatementRestSecurityComponent))
return false;
CapabilityStatementRestSecurityComponent o = (CapabilityStatementRestSecurityComponent) other_;
return compareValues(cors, o.cors, true) && compareValues(description, o.description, true);
}
public boolean isEmpty() {
return super.isEmpty() && ca.uhn.fhir.util.ElementUtil.isEmpty(cors, service, description
, certificate);
}
public String fhirType() {
return "CapabilityStatement.rest.security";
}
}
@Block()
public static class CapabilityStatementRestSecurityCertificateComponent extends BackboneElement implements IBaseBackboneElement {
/**
* Mime type for a certificate.
*/
@Child(name = "type", type = {CodeType.class}, order=1, min=0, max=1, modifier=false, summary=false)
@Description(shortDefinition="Mime type for certificates", formalDefinition="Mime type for a certificate." )
protected CodeType type;
/**
* Actual certificate.
*/
@Child(name = "blob", type = {Base64BinaryType.class}, order=2, min=0, max=1, modifier=false, summary=false)
@Description(shortDefinition="Actual certificate", formalDefinition="Actual certificate." )
protected Base64BinaryType blob;
private static final long serialVersionUID = 2092655854L;
/**
* Constructor
*/
public CapabilityStatementRestSecurityCertificateComponent() {
super();
}
/**
* @return {@link #type} (Mime type for a certificate.). This is the underlying object with id, value and extensions. The accessor "getType" gives direct access to the value
*/
public CodeType getTypeElement() {
if (this.type == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementRestSecurityCertificateComponent.type");
else if (Configuration.doAutoCreate())
this.type = new CodeType(); // bb
return this.type;
}
public boolean hasTypeElement() {
return this.type != null && !this.type.isEmpty();
}
public boolean hasType() {
return this.type != null && !this.type.isEmpty();
}
/**
* @param value {@link #type} (Mime type for a certificate.). This is the underlying object with id, value and extensions. The accessor "getType" gives direct access to the value
*/
public CapabilityStatementRestSecurityCertificateComponent setTypeElement(CodeType value) {
this.type = value;
return this;
}
/**
* @return Mime type for a certificate.
*/
public String getType() {
return this.type == null ? null : this.type.getValue();
}
/**
* @param value Mime type for a certificate.
*/
public CapabilityStatementRestSecurityCertificateComponent setType(String value) {
if (Utilities.noString(value))
this.type = null;
else {
if (this.type == null)
this.type = new CodeType();
this.type.setValue(value);
}
return this;
}
/**
* @return {@link #blob} (Actual certificate.). This is the underlying object with id, value and extensions. The accessor "getBlob" gives direct access to the value
*/
public Base64BinaryType getBlobElement() {
if (this.blob == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementRestSecurityCertificateComponent.blob");
else if (Configuration.doAutoCreate())
this.blob = new Base64BinaryType(); // bb
return this.blob;
}
public boolean hasBlobElement() {
return this.blob != null && !this.blob.isEmpty();
}
public boolean hasBlob() {
return this.blob != null && !this.blob.isEmpty();
}
/**
* @param value {@link #blob} (Actual certificate.). This is the underlying object with id, value and extensions. The accessor "getBlob" gives direct access to the value
*/
public CapabilityStatementRestSecurityCertificateComponent setBlobElement(Base64BinaryType value) {
this.blob = value;
return this;
}
/**
* @return Actual certificate.
*/
public byte[] getBlob() {
return this.blob == null ? null : this.blob.getValue();
}
/**
* @param value Actual certificate.
*/
public CapabilityStatementRestSecurityCertificateComponent setBlob(byte[] value) {
if (value == null)
this.blob = null;
else {
if (this.blob == null)
this.blob = new Base64BinaryType();
this.blob.setValue(value);
}
return this;
}
protected void listChildren(List children) {
super.listChildren(children);
children.add(new Property("type", "code", "Mime type for a certificate.", 0, 1, type));
children.add(new Property("blob", "base64Binary", "Actual certificate.", 0, 1, blob));
}
@Override
public Property getNamedProperty(int _hash, String _name, boolean _checkValid) throws FHIRException {
switch (_hash) {
case 3575610: /*type*/ return new Property("type", "code", "Mime type for a certificate.", 0, 1, type);
case 3026845: /*blob*/ return new Property("blob", "base64Binary", "Actual certificate.", 0, 1, blob);
default: return super.getNamedProperty(_hash, _name, _checkValid);
}
}
@Override
public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException {
switch (hash) {
case 3575610: /*type*/ return this.type == null ? new Base[0] : new Base[] {this.type}; // CodeType
case 3026845: /*blob*/ return this.blob == null ? new Base[0] : new Base[] {this.blob}; // Base64BinaryType
default: return super.getProperty(hash, name, checkValid);
}
}
@Override
public Base setProperty(int hash, String name, Base value) throws FHIRException {
switch (hash) {
case 3575610: // type
this.type = castToCode(value); // CodeType
return value;
case 3026845: // blob
this.blob = castToBase64Binary(value); // Base64BinaryType
return value;
default: return super.setProperty(hash, name, value);
}
}
@Override
public Base setProperty(String name, Base value) throws FHIRException {
if (name.equals("type")) {
this.type = castToCode(value); // CodeType
} else if (name.equals("blob")) {
this.blob = castToBase64Binary(value); // Base64BinaryType
} else
return super.setProperty(name, value);
return value;
}
@Override
public Base makeProperty(int hash, String name) throws FHIRException {
switch (hash) {
case 3575610: return getTypeElement();
case 3026845: return getBlobElement();
default: return super.makeProperty(hash, name);
}
}
@Override
public String[] getTypesForProperty(int hash, String name) throws FHIRException {
switch (hash) {
case 3575610: /*type*/ return new String[] {"code"};
case 3026845: /*blob*/ return new String[] {"base64Binary"};
default: return super.getTypesForProperty(hash, name);
}
}
@Override
public Base addChild(String name) throws FHIRException {
if (name.equals("type")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.type");
}
else if (name.equals("blob")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.blob");
}
else
return super.addChild(name);
}
public CapabilityStatementRestSecurityCertificateComponent copy() {
CapabilityStatementRestSecurityCertificateComponent dst = new CapabilityStatementRestSecurityCertificateComponent();
copyValues(dst);
dst.type = type == null ? null : type.copy();
dst.blob = blob == null ? null : blob.copy();
return dst;
}
@Override
public boolean equalsDeep(Base other_) {
if (!super.equalsDeep(other_))
return false;
if (!(other_ instanceof CapabilityStatementRestSecurityCertificateComponent))
return false;
CapabilityStatementRestSecurityCertificateComponent o = (CapabilityStatementRestSecurityCertificateComponent) other_;
return compareDeep(type, o.type, true) && compareDeep(blob, o.blob, true);
}
@Override
public boolean equalsShallow(Base other_) {
if (!super.equalsShallow(other_))
return false;
if (!(other_ instanceof CapabilityStatementRestSecurityCertificateComponent))
return false;
CapabilityStatementRestSecurityCertificateComponent o = (CapabilityStatementRestSecurityCertificateComponent) other_;
return compareValues(type, o.type, true) && compareValues(blob, o.blob, true);
}
public boolean isEmpty() {
return super.isEmpty() && ca.uhn.fhir.util.ElementUtil.isEmpty(type, blob);
}
public String fhirType() {
return "CapabilityStatement.rest.security.certificate";
}
}
@Block()
public static class CapabilityStatementRestResourceComponent extends BackboneElement implements IBaseBackboneElement {
/**
* A type of resource exposed via the restful interface.
*/
@Child(name = "type", type = {CodeType.class}, order=1, min=1, max=1, modifier=false, summary=true)
@Description(shortDefinition="A resource type that is supported", formalDefinition="A type of resource exposed via the restful interface." )
@ca.uhn.fhir.model.api.annotation.Binding(valueSet="http://hl7.org/fhir/ValueSet/resource-types")
protected CodeType type;
/**
* A specification of the profile that describes the solution's overall support for the resource, including any constraints on cardinality, bindings, lengths or other limitations. See further discussion in [Using Profiles](profiling.html#profile-uses).
*/
@Child(name = "profile", type = {StructureDefinition.class}, order=2, min=0, max=1, modifier=false, summary=true)
@Description(shortDefinition="Base System profile for all uses of resource", formalDefinition="A specification of the profile that describes the solution's overall support for the resource, including any constraints on cardinality, bindings, lengths or other limitations. See further discussion in [Using Profiles](profiling.html#profile-uses)." )
protected Reference profile;
/**
* The actual object that is the target of the reference (A specification of the profile that describes the solution's overall support for the resource, including any constraints on cardinality, bindings, lengths or other limitations. See further discussion in [Using Profiles](profiling.html#profile-uses).)
*/
protected StructureDefinition profileTarget;
/**
* Additional information about the resource type used by the system.
*/
@Child(name = "documentation", type = {MarkdownType.class}, order=3, min=0, max=1, modifier=false, summary=false)
@Description(shortDefinition="Additional information about the use of the resource type", formalDefinition="Additional information about the resource type used by the system." )
protected MarkdownType documentation;
/**
* Identifies a restful operation supported by the solution.
*/
@Child(name = "interaction", type = {}, order=4, min=1, max=Child.MAX_UNLIMITED, modifier=false, summary=false)
@Description(shortDefinition="What operations are supported?", formalDefinition="Identifies a restful operation supported by the solution." )
protected List interaction;
/**
* This field is set to no-version to specify that the system does not support (server) or use (client) versioning for this resource type. If this has some other value, the server must at least correctly track and populate the versionId meta-property on resources. If the value is 'versioned-update', then the server supports all the versioning features, including using e-tags for version integrity in the API.
*/
@Child(name = "versioning", type = {CodeType.class}, order=5, min=0, max=1, modifier=false, summary=false)
@Description(shortDefinition="no-version | versioned | versioned-update", formalDefinition="This field is set to no-version to specify that the system does not support (server) or use (client) versioning for this resource type. If this has some other value, the server must at least correctly track and populate the versionId meta-property on resources. If the value is 'versioned-update', then the server supports all the versioning features, including using e-tags for version integrity in the API." )
@ca.uhn.fhir.model.api.annotation.Binding(valueSet="http://hl7.org/fhir/ValueSet/versioning-policy")
protected Enumeration versioning;
/**
* A flag for whether the server is able to return past versions as part of the vRead operation.
*/
@Child(name = "readHistory", type = {BooleanType.class}, order=6, min=0, max=1, modifier=false, summary=false)
@Description(shortDefinition="Whether vRead can return past versions", formalDefinition="A flag for whether the server is able to return past versions as part of the vRead operation." )
protected BooleanType readHistory;
/**
* A flag to indicate that the server allows or needs to allow the client to create new identities on the server (e.g. that is, the client PUTs to a location where there is no existing resource). Allowing this operation means that the server allows the client to create new identities on the server.
*/
@Child(name = "updateCreate", type = {BooleanType.class}, order=7, min=0, max=1, modifier=false, summary=false)
@Description(shortDefinition="If update can commit to a new identity", formalDefinition="A flag to indicate that the server allows or needs to allow the client to create new identities on the server (e.g. that is, the client PUTs to a location where there is no existing resource). Allowing this operation means that the server allows the client to create new identities on the server." )
protected BooleanType updateCreate;
/**
* A flag that indicates that the server supports conditional create.
*/
@Child(name = "conditionalCreate", type = {BooleanType.class}, order=8, min=0, max=1, modifier=false, summary=false)
@Description(shortDefinition="If allows/uses conditional create", formalDefinition="A flag that indicates that the server supports conditional create." )
protected BooleanType conditionalCreate;
/**
* A code that indicates how the server supports conditional read.
*/
@Child(name = "conditionalRead", type = {CodeType.class}, order=9, min=0, max=1, modifier=false, summary=false)
@Description(shortDefinition="not-supported | modified-since | not-match | full-support", formalDefinition="A code that indicates how the server supports conditional read." )
@ca.uhn.fhir.model.api.annotation.Binding(valueSet="http://hl7.org/fhir/ValueSet/conditional-read-status")
protected Enumeration conditionalRead;
/**
* A flag that indicates that the server supports conditional update.
*/
@Child(name = "conditionalUpdate", type = {BooleanType.class}, order=10, min=0, max=1, modifier=false, summary=false)
@Description(shortDefinition="If allows/uses conditional update", formalDefinition="A flag that indicates that the server supports conditional update." )
protected BooleanType conditionalUpdate;
/**
* A code that indicates how the server supports conditional delete.
*/
@Child(name = "conditionalDelete", type = {CodeType.class}, order=11, min=0, max=1, modifier=false, summary=false)
@Description(shortDefinition="not-supported | single | multiple - how conditional delete is supported", formalDefinition="A code that indicates how the server supports conditional delete." )
@ca.uhn.fhir.model.api.annotation.Binding(valueSet="http://hl7.org/fhir/ValueSet/conditional-delete-status")
protected Enumeration conditionalDelete;
/**
* A set of flags that defines how references are supported.
*/
@Child(name = "referencePolicy", type = {CodeType.class}, order=12, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false)
@Description(shortDefinition="literal | logical | resolves | enforced | local", formalDefinition="A set of flags that defines how references are supported." )
@ca.uhn.fhir.model.api.annotation.Binding(valueSet="http://hl7.org/fhir/ValueSet/reference-handling-policy")
protected List> referencePolicy;
/**
* A list of _include values supported by the server.
*/
@Child(name = "searchInclude", type = {StringType.class}, order=13, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false)
@Description(shortDefinition="_include values supported by the server", formalDefinition="A list of _include values supported by the server." )
protected List searchInclude;
/**
* A list of _revinclude (reverse include) values supported by the server.
*/
@Child(name = "searchRevInclude", type = {StringType.class}, order=14, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false)
@Description(shortDefinition="_revinclude values supported by the server", formalDefinition="A list of _revinclude (reverse include) values supported by the server." )
protected List searchRevInclude;
/**
* Search parameters for implementations to support and/or make use of - either references to ones defined in the specification, or additional ones defined for/by the implementation.
*/
@Child(name = "searchParam", type = {}, order=15, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false)
@Description(shortDefinition="Search parameters supported by implementation", formalDefinition="Search parameters for implementations to support and/or make use of - either references to ones defined in the specification, or additional ones defined for/by the implementation." )
protected List searchParam;
private static final long serialVersionUID = 1271233297L;
/**
* Constructor
*/
public CapabilityStatementRestResourceComponent() {
super();
}
/**
* Constructor
*/
public CapabilityStatementRestResourceComponent(CodeType type) {
super();
this.type = type;
}
/**
* @return {@link #type} (A type of resource exposed via the restful interface.). This is the underlying object with id, value and extensions. The accessor "getType" gives direct access to the value
*/
public CodeType getTypeElement() {
if (this.type == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementRestResourceComponent.type");
else if (Configuration.doAutoCreate())
this.type = new CodeType(); // bb
return this.type;
}
public boolean hasTypeElement() {
return this.type != null && !this.type.isEmpty();
}
public boolean hasType() {
return this.type != null && !this.type.isEmpty();
}
/**
* @param value {@link #type} (A type of resource exposed via the restful interface.). This is the underlying object with id, value and extensions. The accessor "getType" gives direct access to the value
*/
public CapabilityStatementRestResourceComponent setTypeElement(CodeType value) {
this.type = value;
return this;
}
/**
* @return A type of resource exposed via the restful interface.
*/
public String getType() {
return this.type == null ? null : this.type.getValue();
}
/**
* @param value A type of resource exposed via the restful interface.
*/
public CapabilityStatementRestResourceComponent setType(String value) {
if (this.type == null)
this.type = new CodeType();
this.type.setValue(value);
return this;
}
/**
* @return {@link #profile} (A specification of the profile that describes the solution's overall support for the resource, including any constraints on cardinality, bindings, lengths or other limitations. See further discussion in [Using Profiles](profiling.html#profile-uses).)
*/
public Reference getProfile() {
if (this.profile == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementRestResourceComponent.profile");
else if (Configuration.doAutoCreate())
this.profile = new Reference(); // cc
return this.profile;
}
public boolean hasProfile() {
return this.profile != null && !this.profile.isEmpty();
}
/**
* @param value {@link #profile} (A specification of the profile that describes the solution's overall support for the resource, including any constraints on cardinality, bindings, lengths or other limitations. See further discussion in [Using Profiles](profiling.html#profile-uses).)
*/
public CapabilityStatementRestResourceComponent setProfile(Reference value) {
this.profile = value;
return this;
}
/**
* @return {@link #profile} The actual object that is the target of the reference. The reference library doesn't populate this, but you can use it to hold the resource if you resolve it. (A specification of the profile that describes the solution's overall support for the resource, including any constraints on cardinality, bindings, lengths or other limitations. See further discussion in [Using Profiles](profiling.html#profile-uses).)
*/
public StructureDefinition getProfileTarget() {
if (this.profileTarget == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementRestResourceComponent.profile");
else if (Configuration.doAutoCreate())
this.profileTarget = new StructureDefinition(); // aa
return this.profileTarget;
}
/**
* @param value {@link #profile} The actual object that is the target of the reference. The reference library doesn't use these, but you can use it to hold the resource if you resolve it. (A specification of the profile that describes the solution's overall support for the resource, including any constraints on cardinality, bindings, lengths or other limitations. See further discussion in [Using Profiles](profiling.html#profile-uses).)
*/
public CapabilityStatementRestResourceComponent setProfileTarget(StructureDefinition value) {
this.profileTarget = value;
return this;
}
/**
* @return {@link #documentation} (Additional information about the resource type used by the system.). This is the underlying object with id, value and extensions. The accessor "getDocumentation" gives direct access to the value
*/
public MarkdownType getDocumentationElement() {
if (this.documentation == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementRestResourceComponent.documentation");
else if (Configuration.doAutoCreate())
this.documentation = new MarkdownType(); // bb
return this.documentation;
}
public boolean hasDocumentationElement() {
return this.documentation != null && !this.documentation.isEmpty();
}
public boolean hasDocumentation() {
return this.documentation != null && !this.documentation.isEmpty();
}
/**
* @param value {@link #documentation} (Additional information about the resource type used by the system.). This is the underlying object with id, value and extensions. The accessor "getDocumentation" gives direct access to the value
*/
public CapabilityStatementRestResourceComponent setDocumentationElement(MarkdownType value) {
this.documentation = value;
return this;
}
/**
* @return Additional information about the resource type used by the system.
*/
public String getDocumentation() {
return this.documentation == null ? null : this.documentation.getValue();
}
/**
* @param value Additional information about the resource type used by the system.
*/
public CapabilityStatementRestResourceComponent setDocumentation(String value) {
if (value == null)
this.documentation = null;
else {
if (this.documentation == null)
this.documentation = new MarkdownType();
this.documentation.setValue(value);
}
return this;
}
/**
* @return {@link #interaction} (Identifies a restful operation supported by the solution.)
*/
public List getInteraction() {
if (this.interaction == null)
this.interaction = new ArrayList();
return this.interaction;
}
/**
* @return Returns a reference to this
for easy method chaining
*/
public CapabilityStatementRestResourceComponent setInteraction(List theInteraction) {
this.interaction = theInteraction;
return this;
}
public boolean hasInteraction() {
if (this.interaction == null)
return false;
for (ResourceInteractionComponent item : this.interaction)
if (!item.isEmpty())
return true;
return false;
}
public ResourceInteractionComponent addInteraction() { //3
ResourceInteractionComponent t = new ResourceInteractionComponent();
if (this.interaction == null)
this.interaction = new ArrayList();
this.interaction.add(t);
return t;
}
public CapabilityStatementRestResourceComponent addInteraction(ResourceInteractionComponent t) { //3
if (t == null)
return this;
if (this.interaction == null)
this.interaction = new ArrayList();
this.interaction.add(t);
return this;
}
/**
* @return The first repetition of repeating field {@link #interaction}, creating it if it does not already exist
*/
public ResourceInteractionComponent getInteractionFirstRep() {
if (getInteraction().isEmpty()) {
addInteraction();
}
return getInteraction().get(0);
}
/**
* @return {@link #versioning} (This field is set to no-version to specify that the system does not support (server) or use (client) versioning for this resource type. If this has some other value, the server must at least correctly track and populate the versionId meta-property on resources. If the value is 'versioned-update', then the server supports all the versioning features, including using e-tags for version integrity in the API.). This is the underlying object with id, value and extensions. The accessor "getVersioning" gives direct access to the value
*/
public Enumeration getVersioningElement() {
if (this.versioning == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementRestResourceComponent.versioning");
else if (Configuration.doAutoCreate())
this.versioning = new Enumeration(new ResourceVersionPolicyEnumFactory()); // bb
return this.versioning;
}
public boolean hasVersioningElement() {
return this.versioning != null && !this.versioning.isEmpty();
}
public boolean hasVersioning() {
return this.versioning != null && !this.versioning.isEmpty();
}
/**
* @param value {@link #versioning} (This field is set to no-version to specify that the system does not support (server) or use (client) versioning for this resource type. If this has some other value, the server must at least correctly track and populate the versionId meta-property on resources. If the value is 'versioned-update', then the server supports all the versioning features, including using e-tags for version integrity in the API.). This is the underlying object with id, value and extensions. The accessor "getVersioning" gives direct access to the value
*/
public CapabilityStatementRestResourceComponent setVersioningElement(Enumeration value) {
this.versioning = value;
return this;
}
/**
* @return This field is set to no-version to specify that the system does not support (server) or use (client) versioning for this resource type. If this has some other value, the server must at least correctly track and populate the versionId meta-property on resources. If the value is 'versioned-update', then the server supports all the versioning features, including using e-tags for version integrity in the API.
*/
public ResourceVersionPolicy getVersioning() {
return this.versioning == null ? null : this.versioning.getValue();
}
/**
* @param value This field is set to no-version to specify that the system does not support (server) or use (client) versioning for this resource type. If this has some other value, the server must at least correctly track and populate the versionId meta-property on resources. If the value is 'versioned-update', then the server supports all the versioning features, including using e-tags for version integrity in the API.
*/
public CapabilityStatementRestResourceComponent setVersioning(ResourceVersionPolicy value) {
if (value == null)
this.versioning = null;
else {
if (this.versioning == null)
this.versioning = new Enumeration(new ResourceVersionPolicyEnumFactory());
this.versioning.setValue(value);
}
return this;
}
/**
* @return {@link #readHistory} (A flag for whether the server is able to return past versions as part of the vRead operation.). This is the underlying object with id, value and extensions. The accessor "getReadHistory" gives direct access to the value
*/
public BooleanType getReadHistoryElement() {
if (this.readHistory == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementRestResourceComponent.readHistory");
else if (Configuration.doAutoCreate())
this.readHistory = new BooleanType(); // bb
return this.readHistory;
}
public boolean hasReadHistoryElement() {
return this.readHistory != null && !this.readHistory.isEmpty();
}
public boolean hasReadHistory() {
return this.readHistory != null && !this.readHistory.isEmpty();
}
/**
* @param value {@link #readHistory} (A flag for whether the server is able to return past versions as part of the vRead operation.). This is the underlying object with id, value and extensions. The accessor "getReadHistory" gives direct access to the value
*/
public CapabilityStatementRestResourceComponent setReadHistoryElement(BooleanType value) {
this.readHistory = value;
return this;
}
/**
* @return A flag for whether the server is able to return past versions as part of the vRead operation.
*/
public boolean getReadHistory() {
return this.readHistory == null || this.readHistory.isEmpty() ? false : this.readHistory.getValue();
}
/**
* @param value A flag for whether the server is able to return past versions as part of the vRead operation.
*/
public CapabilityStatementRestResourceComponent setReadHistory(boolean value) {
if (this.readHistory == null)
this.readHistory = new BooleanType();
this.readHistory.setValue(value);
return this;
}
/**
* @return {@link #updateCreate} (A flag to indicate that the server allows or needs to allow the client to create new identities on the server (e.g. that is, the client PUTs to a location where there is no existing resource). Allowing this operation means that the server allows the client to create new identities on the server.). This is the underlying object with id, value and extensions. The accessor "getUpdateCreate" gives direct access to the value
*/
public BooleanType getUpdateCreateElement() {
if (this.updateCreate == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementRestResourceComponent.updateCreate");
else if (Configuration.doAutoCreate())
this.updateCreate = new BooleanType(); // bb
return this.updateCreate;
}
public boolean hasUpdateCreateElement() {
return this.updateCreate != null && !this.updateCreate.isEmpty();
}
public boolean hasUpdateCreate() {
return this.updateCreate != null && !this.updateCreate.isEmpty();
}
/**
* @param value {@link #updateCreate} (A flag to indicate that the server allows or needs to allow the client to create new identities on the server (e.g. that is, the client PUTs to a location where there is no existing resource). Allowing this operation means that the server allows the client to create new identities on the server.). This is the underlying object with id, value and extensions. The accessor "getUpdateCreate" gives direct access to the value
*/
public CapabilityStatementRestResourceComponent setUpdateCreateElement(BooleanType value) {
this.updateCreate = value;
return this;
}
/**
* @return A flag to indicate that the server allows or needs to allow the client to create new identities on the server (e.g. that is, the client PUTs to a location where there is no existing resource). Allowing this operation means that the server allows the client to create new identities on the server.
*/
public boolean getUpdateCreate() {
return this.updateCreate == null || this.updateCreate.isEmpty() ? false : this.updateCreate.getValue();
}
/**
* @param value A flag to indicate that the server allows or needs to allow the client to create new identities on the server (e.g. that is, the client PUTs to a location where there is no existing resource). Allowing this operation means that the server allows the client to create new identities on the server.
*/
public CapabilityStatementRestResourceComponent setUpdateCreate(boolean value) {
if (this.updateCreate == null)
this.updateCreate = new BooleanType();
this.updateCreate.setValue(value);
return this;
}
/**
* @return {@link #conditionalCreate} (A flag that indicates that the server supports conditional create.). This is the underlying object with id, value and extensions. The accessor "getConditionalCreate" gives direct access to the value
*/
public BooleanType getConditionalCreateElement() {
if (this.conditionalCreate == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementRestResourceComponent.conditionalCreate");
else if (Configuration.doAutoCreate())
this.conditionalCreate = new BooleanType(); // bb
return this.conditionalCreate;
}
public boolean hasConditionalCreateElement() {
return this.conditionalCreate != null && !this.conditionalCreate.isEmpty();
}
public boolean hasConditionalCreate() {
return this.conditionalCreate != null && !this.conditionalCreate.isEmpty();
}
/**
* @param value {@link #conditionalCreate} (A flag that indicates that the server supports conditional create.). This is the underlying object with id, value and extensions. The accessor "getConditionalCreate" gives direct access to the value
*/
public CapabilityStatementRestResourceComponent setConditionalCreateElement(BooleanType value) {
this.conditionalCreate = value;
return this;
}
/**
* @return A flag that indicates that the server supports conditional create.
*/
public boolean getConditionalCreate() {
return this.conditionalCreate == null || this.conditionalCreate.isEmpty() ? false : this.conditionalCreate.getValue();
}
/**
* @param value A flag that indicates that the server supports conditional create.
*/
public CapabilityStatementRestResourceComponent setConditionalCreate(boolean value) {
if (this.conditionalCreate == null)
this.conditionalCreate = new BooleanType();
this.conditionalCreate.setValue(value);
return this;
}
/**
* @return {@link #conditionalRead} (A code that indicates how the server supports conditional read.). This is the underlying object with id, value and extensions. The accessor "getConditionalRead" gives direct access to the value
*/
public Enumeration getConditionalReadElement() {
if (this.conditionalRead == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementRestResourceComponent.conditionalRead");
else if (Configuration.doAutoCreate())
this.conditionalRead = new Enumeration(new ConditionalReadStatusEnumFactory()); // bb
return this.conditionalRead;
}
public boolean hasConditionalReadElement() {
return this.conditionalRead != null && !this.conditionalRead.isEmpty();
}
public boolean hasConditionalRead() {
return this.conditionalRead != null && !this.conditionalRead.isEmpty();
}
/**
* @param value {@link #conditionalRead} (A code that indicates how the server supports conditional read.). This is the underlying object with id, value and extensions. The accessor "getConditionalRead" gives direct access to the value
*/
public CapabilityStatementRestResourceComponent setConditionalReadElement(Enumeration value) {
this.conditionalRead = value;
return this;
}
/**
* @return A code that indicates how the server supports conditional read.
*/
public ConditionalReadStatus getConditionalRead() {
return this.conditionalRead == null ? null : this.conditionalRead.getValue();
}
/**
* @param value A code that indicates how the server supports conditional read.
*/
public CapabilityStatementRestResourceComponent setConditionalRead(ConditionalReadStatus value) {
if (value == null)
this.conditionalRead = null;
else {
if (this.conditionalRead == null)
this.conditionalRead = new Enumeration(new ConditionalReadStatusEnumFactory());
this.conditionalRead.setValue(value);
}
return this;
}
/**
* @return {@link #conditionalUpdate} (A flag that indicates that the server supports conditional update.). This is the underlying object with id, value and extensions. The accessor "getConditionalUpdate" gives direct access to the value
*/
public BooleanType getConditionalUpdateElement() {
if (this.conditionalUpdate == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementRestResourceComponent.conditionalUpdate");
else if (Configuration.doAutoCreate())
this.conditionalUpdate = new BooleanType(); // bb
return this.conditionalUpdate;
}
public boolean hasConditionalUpdateElement() {
return this.conditionalUpdate != null && !this.conditionalUpdate.isEmpty();
}
public boolean hasConditionalUpdate() {
return this.conditionalUpdate != null && !this.conditionalUpdate.isEmpty();
}
/**
* @param value {@link #conditionalUpdate} (A flag that indicates that the server supports conditional update.). This is the underlying object with id, value and extensions. The accessor "getConditionalUpdate" gives direct access to the value
*/
public CapabilityStatementRestResourceComponent setConditionalUpdateElement(BooleanType value) {
this.conditionalUpdate = value;
return this;
}
/**
* @return A flag that indicates that the server supports conditional update.
*/
public boolean getConditionalUpdate() {
return this.conditionalUpdate == null || this.conditionalUpdate.isEmpty() ? false : this.conditionalUpdate.getValue();
}
/**
* @param value A flag that indicates that the server supports conditional update.
*/
public CapabilityStatementRestResourceComponent setConditionalUpdate(boolean value) {
if (this.conditionalUpdate == null)
this.conditionalUpdate = new BooleanType();
this.conditionalUpdate.setValue(value);
return this;
}
/**
* @return {@link #conditionalDelete} (A code that indicates how the server supports conditional delete.). This is the underlying object with id, value and extensions. The accessor "getConditionalDelete" gives direct access to the value
*/
public Enumeration getConditionalDeleteElement() {
if (this.conditionalDelete == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementRestResourceComponent.conditionalDelete");
else if (Configuration.doAutoCreate())
this.conditionalDelete = new Enumeration(new ConditionalDeleteStatusEnumFactory()); // bb
return this.conditionalDelete;
}
public boolean hasConditionalDeleteElement() {
return this.conditionalDelete != null && !this.conditionalDelete.isEmpty();
}
public boolean hasConditionalDelete() {
return this.conditionalDelete != null && !this.conditionalDelete.isEmpty();
}
/**
* @param value {@link #conditionalDelete} (A code that indicates how the server supports conditional delete.). This is the underlying object with id, value and extensions. The accessor "getConditionalDelete" gives direct access to the value
*/
public CapabilityStatementRestResourceComponent setConditionalDeleteElement(Enumeration value) {
this.conditionalDelete = value;
return this;
}
/**
* @return A code that indicates how the server supports conditional delete.
*/
public ConditionalDeleteStatus getConditionalDelete() {
return this.conditionalDelete == null ? null : this.conditionalDelete.getValue();
}
/**
* @param value A code that indicates how the server supports conditional delete.
*/
public CapabilityStatementRestResourceComponent setConditionalDelete(ConditionalDeleteStatus value) {
if (value == null)
this.conditionalDelete = null;
else {
if (this.conditionalDelete == null)
this.conditionalDelete = new Enumeration(new ConditionalDeleteStatusEnumFactory());
this.conditionalDelete.setValue(value);
}
return this;
}
/**
* @return {@link #referencePolicy} (A set of flags that defines how references are supported.)
*/
public List> getReferencePolicy() {
if (this.referencePolicy == null)
this.referencePolicy = new ArrayList>();
return this.referencePolicy;
}
/**
* @return Returns a reference to this
for easy method chaining
*/
public CapabilityStatementRestResourceComponent setReferencePolicy(List> theReferencePolicy) {
this.referencePolicy = theReferencePolicy;
return this;
}
public boolean hasReferencePolicy() {
if (this.referencePolicy == null)
return false;
for (Enumeration item : this.referencePolicy)
if (!item.isEmpty())
return true;
return false;
}
/**
* @return {@link #referencePolicy} (A set of flags that defines how references are supported.)
*/
public Enumeration addReferencePolicyElement() {//2
Enumeration t = new Enumeration(new ReferenceHandlingPolicyEnumFactory());
if (this.referencePolicy == null)
this.referencePolicy = new ArrayList>();
this.referencePolicy.add(t);
return t;
}
/**
* @param value {@link #referencePolicy} (A set of flags that defines how references are supported.)
*/
public CapabilityStatementRestResourceComponent addReferencePolicy(ReferenceHandlingPolicy value) { //1
Enumeration t = new Enumeration(new ReferenceHandlingPolicyEnumFactory());
t.setValue(value);
if (this.referencePolicy == null)
this.referencePolicy = new ArrayList>();
this.referencePolicy.add(t);
return this;
}
/**
* @param value {@link #referencePolicy} (A set of flags that defines how references are supported.)
*/
public boolean hasReferencePolicy(ReferenceHandlingPolicy value) {
if (this.referencePolicy == null)
return false;
for (Enumeration v : this.referencePolicy)
if (v.getValue().equals(value)) // code
return true;
return false;
}
/**
* @return {@link #searchInclude} (A list of _include values supported by the server.)
*/
public List getSearchInclude() {
if (this.searchInclude == null)
this.searchInclude = new ArrayList();
return this.searchInclude;
}
/**
* @return Returns a reference to this
for easy method chaining
*/
public CapabilityStatementRestResourceComponent setSearchInclude(List theSearchInclude) {
this.searchInclude = theSearchInclude;
return this;
}
public boolean hasSearchInclude() {
if (this.searchInclude == null)
return false;
for (StringType item : this.searchInclude)
if (!item.isEmpty())
return true;
return false;
}
/**
* @return {@link #searchInclude} (A list of _include values supported by the server.)
*/
public StringType addSearchIncludeElement() {//2
StringType t = new StringType();
if (this.searchInclude == null)
this.searchInclude = new ArrayList();
this.searchInclude.add(t);
return t;
}
/**
* @param value {@link #searchInclude} (A list of _include values supported by the server.)
*/
public CapabilityStatementRestResourceComponent addSearchInclude(String value) { //1
StringType t = new StringType();
t.setValue(value);
if (this.searchInclude == null)
this.searchInclude = new ArrayList();
this.searchInclude.add(t);
return this;
}
/**
* @param value {@link #searchInclude} (A list of _include values supported by the server.)
*/
public boolean hasSearchInclude(String value) {
if (this.searchInclude == null)
return false;
for (StringType v : this.searchInclude)
if (v.getValue().equals(value)) // string
return true;
return false;
}
/**
* @return {@link #searchRevInclude} (A list of _revinclude (reverse include) values supported by the server.)
*/
public List getSearchRevInclude() {
if (this.searchRevInclude == null)
this.searchRevInclude = new ArrayList();
return this.searchRevInclude;
}
/**
* @return Returns a reference to this
for easy method chaining
*/
public CapabilityStatementRestResourceComponent setSearchRevInclude(List theSearchRevInclude) {
this.searchRevInclude = theSearchRevInclude;
return this;
}
public boolean hasSearchRevInclude() {
if (this.searchRevInclude == null)
return false;
for (StringType item : this.searchRevInclude)
if (!item.isEmpty())
return true;
return false;
}
/**
* @return {@link #searchRevInclude} (A list of _revinclude (reverse include) values supported by the server.)
*/
public StringType addSearchRevIncludeElement() {//2
StringType t = new StringType();
if (this.searchRevInclude == null)
this.searchRevInclude = new ArrayList();
this.searchRevInclude.add(t);
return t;
}
/**
* @param value {@link #searchRevInclude} (A list of _revinclude (reverse include) values supported by the server.)
*/
public CapabilityStatementRestResourceComponent addSearchRevInclude(String value) { //1
StringType t = new StringType();
t.setValue(value);
if (this.searchRevInclude == null)
this.searchRevInclude = new ArrayList();
this.searchRevInclude.add(t);
return this;
}
/**
* @param value {@link #searchRevInclude} (A list of _revinclude (reverse include) values supported by the server.)
*/
public boolean hasSearchRevInclude(String value) {
if (this.searchRevInclude == null)
return false;
for (StringType v : this.searchRevInclude)
if (v.getValue().equals(value)) // string
return true;
return false;
}
/**
* @return {@link #searchParam} (Search parameters for implementations to support and/or make use of - either references to ones defined in the specification, or additional ones defined for/by the implementation.)
*/
public List getSearchParam() {
if (this.searchParam == null)
this.searchParam = new ArrayList();
return this.searchParam;
}
/**
* @return Returns a reference to this
for easy method chaining
*/
public CapabilityStatementRestResourceComponent setSearchParam(List theSearchParam) {
this.searchParam = theSearchParam;
return this;
}
public boolean hasSearchParam() {
if (this.searchParam == null)
return false;
for (CapabilityStatementRestResourceSearchParamComponent item : this.searchParam)
if (!item.isEmpty())
return true;
return false;
}
public CapabilityStatementRestResourceSearchParamComponent addSearchParam() { //3
CapabilityStatementRestResourceSearchParamComponent t = new CapabilityStatementRestResourceSearchParamComponent();
if (this.searchParam == null)
this.searchParam = new ArrayList();
this.searchParam.add(t);
return t;
}
public CapabilityStatementRestResourceComponent addSearchParam(CapabilityStatementRestResourceSearchParamComponent t) { //3
if (t == null)
return this;
if (this.searchParam == null)
this.searchParam = new ArrayList();
this.searchParam.add(t);
return this;
}
/**
* @return The first repetition of repeating field {@link #searchParam}, creating it if it does not already exist
*/
public CapabilityStatementRestResourceSearchParamComponent getSearchParamFirstRep() {
if (getSearchParam().isEmpty()) {
addSearchParam();
}
return getSearchParam().get(0);
}
protected void listChildren(List children) {
super.listChildren(children);
children.add(new Property("type", "code", "A type of resource exposed via the restful interface.", 0, 1, type));
children.add(new Property("profile", "Reference(StructureDefinition)", "A specification of the profile that describes the solution's overall support for the resource, including any constraints on cardinality, bindings, lengths or other limitations. See further discussion in [Using Profiles](profiling.html#profile-uses).", 0, 1, profile));
children.add(new Property("documentation", "markdown", "Additional information about the resource type used by the system.", 0, 1, documentation));
children.add(new Property("interaction", "", "Identifies a restful operation supported by the solution.", 0, java.lang.Integer.MAX_VALUE, interaction));
children.add(new Property("versioning", "code", "This field is set to no-version to specify that the system does not support (server) or use (client) versioning for this resource type. If this has some other value, the server must at least correctly track and populate the versionId meta-property on resources. If the value is 'versioned-update', then the server supports all the versioning features, including using e-tags for version integrity in the API.", 0, 1, versioning));
children.add(new Property("readHistory", "boolean", "A flag for whether the server is able to return past versions as part of the vRead operation.", 0, 1, readHistory));
children.add(new Property("updateCreate", "boolean", "A flag to indicate that the server allows or needs to allow the client to create new identities on the server (e.g. that is, the client PUTs to a location where there is no existing resource). Allowing this operation means that the server allows the client to create new identities on the server.", 0, 1, updateCreate));
children.add(new Property("conditionalCreate", "boolean", "A flag that indicates that the server supports conditional create.", 0, 1, conditionalCreate));
children.add(new Property("conditionalRead", "code", "A code that indicates how the server supports conditional read.", 0, 1, conditionalRead));
children.add(new Property("conditionalUpdate", "boolean", "A flag that indicates that the server supports conditional update.", 0, 1, conditionalUpdate));
children.add(new Property("conditionalDelete", "code", "A code that indicates how the server supports conditional delete.", 0, 1, conditionalDelete));
children.add(new Property("referencePolicy", "code", "A set of flags that defines how references are supported.", 0, java.lang.Integer.MAX_VALUE, referencePolicy));
children.add(new Property("searchInclude", "string", "A list of _include values supported by the server.", 0, java.lang.Integer.MAX_VALUE, searchInclude));
children.add(new Property("searchRevInclude", "string", "A list of _revinclude (reverse include) values supported by the server.", 0, java.lang.Integer.MAX_VALUE, searchRevInclude));
children.add(new Property("searchParam", "", "Search parameters for implementations to support and/or make use of - either references to ones defined in the specification, or additional ones defined for/by the implementation.", 0, java.lang.Integer.MAX_VALUE, searchParam));
}
@Override
public Property getNamedProperty(int _hash, String _name, boolean _checkValid) throws FHIRException {
switch (_hash) {
case 3575610: /*type*/ return new Property("type", "code", "A type of resource exposed via the restful interface.", 0, 1, type);
case -309425751: /*profile*/ return new Property("profile", "Reference(StructureDefinition)", "A specification of the profile that describes the solution's overall support for the resource, including any constraints on cardinality, bindings, lengths or other limitations. See further discussion in [Using Profiles](profiling.html#profile-uses).", 0, 1, profile);
case 1587405498: /*documentation*/ return new Property("documentation", "markdown", "Additional information about the resource type used by the system.", 0, 1, documentation);
case 1844104722: /*interaction*/ return new Property("interaction", "", "Identifies a restful operation supported by the solution.", 0, java.lang.Integer.MAX_VALUE, interaction);
case -670487542: /*versioning*/ return new Property("versioning", "code", "This field is set to no-version to specify that the system does not support (server) or use (client) versioning for this resource type. If this has some other value, the server must at least correctly track and populate the versionId meta-property on resources. If the value is 'versioned-update', then the server supports all the versioning features, including using e-tags for version integrity in the API.", 0, 1, versioning);
case 187518494: /*readHistory*/ return new Property("readHistory", "boolean", "A flag for whether the server is able to return past versions as part of the vRead operation.", 0, 1, readHistory);
case -1400550619: /*updateCreate*/ return new Property("updateCreate", "boolean", "A flag to indicate that the server allows or needs to allow the client to create new identities on the server (e.g. that is, the client PUTs to a location where there is no existing resource). Allowing this operation means that the server allows the client to create new identities on the server.", 0, 1, updateCreate);
case 6401826: /*conditionalCreate*/ return new Property("conditionalCreate", "boolean", "A flag that indicates that the server supports conditional create.", 0, 1, conditionalCreate);
case 822786364: /*conditionalRead*/ return new Property("conditionalRead", "code", "A code that indicates how the server supports conditional read.", 0, 1, conditionalRead);
case 519849711: /*conditionalUpdate*/ return new Property("conditionalUpdate", "boolean", "A flag that indicates that the server supports conditional update.", 0, 1, conditionalUpdate);
case 23237585: /*conditionalDelete*/ return new Property("conditionalDelete", "code", "A code that indicates how the server supports conditional delete.", 0, 1, conditionalDelete);
case 796257373: /*referencePolicy*/ return new Property("referencePolicy", "code", "A set of flags that defines how references are supported.", 0, java.lang.Integer.MAX_VALUE, referencePolicy);
case -1035904544: /*searchInclude*/ return new Property("searchInclude", "string", "A list of _include values supported by the server.", 0, java.lang.Integer.MAX_VALUE, searchInclude);
case -2123884979: /*searchRevInclude*/ return new Property("searchRevInclude", "string", "A list of _revinclude (reverse include) values supported by the server.", 0, java.lang.Integer.MAX_VALUE, searchRevInclude);
case -553645115: /*searchParam*/ return new Property("searchParam", "", "Search parameters for implementations to support and/or make use of - either references to ones defined in the specification, or additional ones defined for/by the implementation.", 0, java.lang.Integer.MAX_VALUE, searchParam);
default: return super.getNamedProperty(_hash, _name, _checkValid);
}
}
@Override
public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException {
switch (hash) {
case 3575610: /*type*/ return this.type == null ? new Base[0] : new Base[] {this.type}; // CodeType
case -309425751: /*profile*/ return this.profile == null ? new Base[0] : new Base[] {this.profile}; // Reference
case 1587405498: /*documentation*/ return this.documentation == null ? new Base[0] : new Base[] {this.documentation}; // MarkdownType
case 1844104722: /*interaction*/ return this.interaction == null ? new Base[0] : this.interaction.toArray(new Base[this.interaction.size()]); // ResourceInteractionComponent
case -670487542: /*versioning*/ return this.versioning == null ? new Base[0] : new Base[] {this.versioning}; // Enumeration
case 187518494: /*readHistory*/ return this.readHistory == null ? new Base[0] : new Base[] {this.readHistory}; // BooleanType
case -1400550619: /*updateCreate*/ return this.updateCreate == null ? new Base[0] : new Base[] {this.updateCreate}; // BooleanType
case 6401826: /*conditionalCreate*/ return this.conditionalCreate == null ? new Base[0] : new Base[] {this.conditionalCreate}; // BooleanType
case 822786364: /*conditionalRead*/ return this.conditionalRead == null ? new Base[0] : new Base[] {this.conditionalRead}; // Enumeration
case 519849711: /*conditionalUpdate*/ return this.conditionalUpdate == null ? new Base[0] : new Base[] {this.conditionalUpdate}; // BooleanType
case 23237585: /*conditionalDelete*/ return this.conditionalDelete == null ? new Base[0] : new Base[] {this.conditionalDelete}; // Enumeration
case 796257373: /*referencePolicy*/ return this.referencePolicy == null ? new Base[0] : this.referencePolicy.toArray(new Base[this.referencePolicy.size()]); // Enumeration
case -1035904544: /*searchInclude*/ return this.searchInclude == null ? new Base[0] : this.searchInclude.toArray(new Base[this.searchInclude.size()]); // StringType
case -2123884979: /*searchRevInclude*/ return this.searchRevInclude == null ? new Base[0] : this.searchRevInclude.toArray(new Base[this.searchRevInclude.size()]); // StringType
case -553645115: /*searchParam*/ return this.searchParam == null ? new Base[0] : this.searchParam.toArray(new Base[this.searchParam.size()]); // CapabilityStatementRestResourceSearchParamComponent
default: return super.getProperty(hash, name, checkValid);
}
}
@Override
public Base setProperty(int hash, String name, Base value) throws FHIRException {
switch (hash) {
case 3575610: // type
this.type = castToCode(value); // CodeType
return value;
case -309425751: // profile
this.profile = castToReference(value); // Reference
return value;
case 1587405498: // documentation
this.documentation = castToMarkdown(value); // MarkdownType
return value;
case 1844104722: // interaction
this.getInteraction().add((ResourceInteractionComponent) value); // ResourceInteractionComponent
return value;
case -670487542: // versioning
value = new ResourceVersionPolicyEnumFactory().fromType(castToCode(value));
this.versioning = (Enumeration) value; // Enumeration
return value;
case 187518494: // readHistory
this.readHistory = castToBoolean(value); // BooleanType
return value;
case -1400550619: // updateCreate
this.updateCreate = castToBoolean(value); // BooleanType
return value;
case 6401826: // conditionalCreate
this.conditionalCreate = castToBoolean(value); // BooleanType
return value;
case 822786364: // conditionalRead
value = new ConditionalReadStatusEnumFactory().fromType(castToCode(value));
this.conditionalRead = (Enumeration) value; // Enumeration
return value;
case 519849711: // conditionalUpdate
this.conditionalUpdate = castToBoolean(value); // BooleanType
return value;
case 23237585: // conditionalDelete
value = new ConditionalDeleteStatusEnumFactory().fromType(castToCode(value));
this.conditionalDelete = (Enumeration) value; // Enumeration
return value;
case 796257373: // referencePolicy
value = new ReferenceHandlingPolicyEnumFactory().fromType(castToCode(value));
this.getReferencePolicy().add((Enumeration) value); // Enumeration
return value;
case -1035904544: // searchInclude
this.getSearchInclude().add(castToString(value)); // StringType
return value;
case -2123884979: // searchRevInclude
this.getSearchRevInclude().add(castToString(value)); // StringType
return value;
case -553645115: // searchParam
this.getSearchParam().add((CapabilityStatementRestResourceSearchParamComponent) value); // CapabilityStatementRestResourceSearchParamComponent
return value;
default: return super.setProperty(hash, name, value);
}
}
@Override
public Base setProperty(String name, Base value) throws FHIRException {
if (name.equals("type")) {
this.type = castToCode(value); // CodeType
} else if (name.equals("profile")) {
this.profile = castToReference(value); // Reference
} else if (name.equals("documentation")) {
this.documentation = castToMarkdown(value); // MarkdownType
} else if (name.equals("interaction")) {
this.getInteraction().add((ResourceInteractionComponent) value);
} else if (name.equals("versioning")) {
value = new ResourceVersionPolicyEnumFactory().fromType(castToCode(value));
this.versioning = (Enumeration) value; // Enumeration
} else if (name.equals("readHistory")) {
this.readHistory = castToBoolean(value); // BooleanType
} else if (name.equals("updateCreate")) {
this.updateCreate = castToBoolean(value); // BooleanType
} else if (name.equals("conditionalCreate")) {
this.conditionalCreate = castToBoolean(value); // BooleanType
} else if (name.equals("conditionalRead")) {
value = new ConditionalReadStatusEnumFactory().fromType(castToCode(value));
this.conditionalRead = (Enumeration) value; // Enumeration
} else if (name.equals("conditionalUpdate")) {
this.conditionalUpdate = castToBoolean(value); // BooleanType
} else if (name.equals("conditionalDelete")) {
value = new ConditionalDeleteStatusEnumFactory().fromType(castToCode(value));
this.conditionalDelete = (Enumeration) value; // Enumeration
} else if (name.equals("referencePolicy")) {
value = new ReferenceHandlingPolicyEnumFactory().fromType(castToCode(value));
this.getReferencePolicy().add((Enumeration) value);
} else if (name.equals("searchInclude")) {
this.getSearchInclude().add(castToString(value));
} else if (name.equals("searchRevInclude")) {
this.getSearchRevInclude().add(castToString(value));
} else if (name.equals("searchParam")) {
this.getSearchParam().add((CapabilityStatementRestResourceSearchParamComponent) value);
} else
return super.setProperty(name, value);
return value;
}
@Override
public Base makeProperty(int hash, String name) throws FHIRException {
switch (hash) {
case 3575610: return getTypeElement();
case -309425751: return getProfile();
case 1587405498: return getDocumentationElement();
case 1844104722: return addInteraction();
case -670487542: return getVersioningElement();
case 187518494: return getReadHistoryElement();
case -1400550619: return getUpdateCreateElement();
case 6401826: return getConditionalCreateElement();
case 822786364: return getConditionalReadElement();
case 519849711: return getConditionalUpdateElement();
case 23237585: return getConditionalDeleteElement();
case 796257373: return addReferencePolicyElement();
case -1035904544: return addSearchIncludeElement();
case -2123884979: return addSearchRevIncludeElement();
case -553645115: return addSearchParam();
default: return super.makeProperty(hash, name);
}
}
@Override
public String[] getTypesForProperty(int hash, String name) throws FHIRException {
switch (hash) {
case 3575610: /*type*/ return new String[] {"code"};
case -309425751: /*profile*/ return new String[] {"Reference"};
case 1587405498: /*documentation*/ return new String[] {"markdown"};
case 1844104722: /*interaction*/ return new String[] {};
case -670487542: /*versioning*/ return new String[] {"code"};
case 187518494: /*readHistory*/ return new String[] {"boolean"};
case -1400550619: /*updateCreate*/ return new String[] {"boolean"};
case 6401826: /*conditionalCreate*/ return new String[] {"boolean"};
case 822786364: /*conditionalRead*/ return new String[] {"code"};
case 519849711: /*conditionalUpdate*/ return new String[] {"boolean"};
case 23237585: /*conditionalDelete*/ return new String[] {"code"};
case 796257373: /*referencePolicy*/ return new String[] {"code"};
case -1035904544: /*searchInclude*/ return new String[] {"string"};
case -2123884979: /*searchRevInclude*/ return new String[] {"string"};
case -553645115: /*searchParam*/ return new String[] {};
default: return super.getTypesForProperty(hash, name);
}
}
@Override
public Base addChild(String name) throws FHIRException {
if (name.equals("type")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.type");
}
else if (name.equals("profile")) {
this.profile = new Reference();
return this.profile;
}
else if (name.equals("documentation")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.documentation");
}
else if (name.equals("interaction")) {
return addInteraction();
}
else if (name.equals("versioning")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.versioning");
}
else if (name.equals("readHistory")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.readHistory");
}
else if (name.equals("updateCreate")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.updateCreate");
}
else if (name.equals("conditionalCreate")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.conditionalCreate");
}
else if (name.equals("conditionalRead")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.conditionalRead");
}
else if (name.equals("conditionalUpdate")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.conditionalUpdate");
}
else if (name.equals("conditionalDelete")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.conditionalDelete");
}
else if (name.equals("referencePolicy")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.referencePolicy");
}
else if (name.equals("searchInclude")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.searchInclude");
}
else if (name.equals("searchRevInclude")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.searchRevInclude");
}
else if (name.equals("searchParam")) {
return addSearchParam();
}
else
return super.addChild(name);
}
public CapabilityStatementRestResourceComponent copy() {
CapabilityStatementRestResourceComponent dst = new CapabilityStatementRestResourceComponent();
copyValues(dst);
dst.type = type == null ? null : type.copy();
dst.profile = profile == null ? null : profile.copy();
dst.documentation = documentation == null ? null : documentation.copy();
if (interaction != null) {
dst.interaction = new ArrayList();
for (ResourceInteractionComponent i : interaction)
dst.interaction.add(i.copy());
};
dst.versioning = versioning == null ? null : versioning.copy();
dst.readHistory = readHistory == null ? null : readHistory.copy();
dst.updateCreate = updateCreate == null ? null : updateCreate.copy();
dst.conditionalCreate = conditionalCreate == null ? null : conditionalCreate.copy();
dst.conditionalRead = conditionalRead == null ? null : conditionalRead.copy();
dst.conditionalUpdate = conditionalUpdate == null ? null : conditionalUpdate.copy();
dst.conditionalDelete = conditionalDelete == null ? null : conditionalDelete.copy();
if (referencePolicy != null) {
dst.referencePolicy = new ArrayList>();
for (Enumeration i : referencePolicy)
dst.referencePolicy.add(i.copy());
};
if (searchInclude != null) {
dst.searchInclude = new ArrayList();
for (StringType i : searchInclude)
dst.searchInclude.add(i.copy());
};
if (searchRevInclude != null) {
dst.searchRevInclude = new ArrayList();
for (StringType i : searchRevInclude)
dst.searchRevInclude.add(i.copy());
};
if (searchParam != null) {
dst.searchParam = new ArrayList();
for (CapabilityStatementRestResourceSearchParamComponent i : searchParam)
dst.searchParam.add(i.copy());
};
return dst;
}
@Override
public boolean equalsDeep(Base other_) {
if (!super.equalsDeep(other_))
return false;
if (!(other_ instanceof CapabilityStatementRestResourceComponent))
return false;
CapabilityStatementRestResourceComponent o = (CapabilityStatementRestResourceComponent) other_;
return compareDeep(type, o.type, true) && compareDeep(profile, o.profile, true) && compareDeep(documentation, o.documentation, true)
&& compareDeep(interaction, o.interaction, true) && compareDeep(versioning, o.versioning, true)
&& compareDeep(readHistory, o.readHistory, true) && compareDeep(updateCreate, o.updateCreate, true)
&& compareDeep(conditionalCreate, o.conditionalCreate, true) && compareDeep(conditionalRead, o.conditionalRead, true)
&& compareDeep(conditionalUpdate, o.conditionalUpdate, true) && compareDeep(conditionalDelete, o.conditionalDelete, true)
&& compareDeep(referencePolicy, o.referencePolicy, true) && compareDeep(searchInclude, o.searchInclude, true)
&& compareDeep(searchRevInclude, o.searchRevInclude, true) && compareDeep(searchParam, o.searchParam, true)
;
}
@Override
public boolean equalsShallow(Base other_) {
if (!super.equalsShallow(other_))
return false;
if (!(other_ instanceof CapabilityStatementRestResourceComponent))
return false;
CapabilityStatementRestResourceComponent o = (CapabilityStatementRestResourceComponent) other_;
return compareValues(type, o.type, true) && compareValues(documentation, o.documentation, true) && compareValues(versioning, o.versioning, true)
&& compareValues(readHistory, o.readHistory, true) && compareValues(updateCreate, o.updateCreate, true)
&& compareValues(conditionalCreate, o.conditionalCreate, true) && compareValues(conditionalRead, o.conditionalRead, true)
&& compareValues(conditionalUpdate, o.conditionalUpdate, true) && compareValues(conditionalDelete, o.conditionalDelete, true)
&& compareValues(referencePolicy, o.referencePolicy, true) && compareValues(searchInclude, o.searchInclude, true)
&& compareValues(searchRevInclude, o.searchRevInclude, true);
}
public boolean isEmpty() {
return super.isEmpty() && ca.uhn.fhir.util.ElementUtil.isEmpty(type, profile, documentation
, interaction, versioning, readHistory, updateCreate, conditionalCreate, conditionalRead
, conditionalUpdate, conditionalDelete, referencePolicy, searchInclude, searchRevInclude
, searchParam);
}
public String fhirType() {
return "CapabilityStatement.rest.resource";
}
}
@Block()
public static class ResourceInteractionComponent extends BackboneElement implements IBaseBackboneElement {
/**
* Coded identifier of the operation, supported by the system resource.
*/
@Child(name = "code", type = {CodeType.class}, order=1, min=1, max=1, modifier=false, summary=false)
@Description(shortDefinition="read | vread | update | patch | delete | history-instance | history-type | create | search-type", formalDefinition="Coded identifier of the operation, supported by the system resource." )
@ca.uhn.fhir.model.api.annotation.Binding(valueSet="http://hl7.org/fhir/ValueSet/type-restful-interaction")
protected Enumeration code;
/**
* Guidance specific to the implementation of this operation, such as 'delete is a logical delete' or 'updates are only allowed with version id' or 'creates permitted from pre-authorized certificates only'.
*/
@Child(name = "documentation", type = {StringType.class}, order=2, min=0, max=1, modifier=false, summary=false)
@Description(shortDefinition="Anything special about operation behavior", formalDefinition="Guidance specific to the implementation of this operation, such as 'delete is a logical delete' or 'updates are only allowed with version id' or 'creates permitted from pre-authorized certificates only'." )
protected StringType documentation;
private static final long serialVersionUID = -437507806L;
/**
* Constructor
*/
public ResourceInteractionComponent() {
super();
}
/**
* Constructor
*/
public ResourceInteractionComponent(Enumeration code) {
super();
this.code = code;
}
/**
* @return {@link #code} (Coded identifier of the operation, supported by the system resource.). This is the underlying object with id, value and extensions. The accessor "getCode" gives direct access to the value
*/
public Enumeration getCodeElement() {
if (this.code == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create ResourceInteractionComponent.code");
else if (Configuration.doAutoCreate())
this.code = new Enumeration(new TypeRestfulInteractionEnumFactory()); // bb
return this.code;
}
public boolean hasCodeElement() {
return this.code != null && !this.code.isEmpty();
}
public boolean hasCode() {
return this.code != null && !this.code.isEmpty();
}
/**
* @param value {@link #code} (Coded identifier of the operation, supported by the system resource.). This is the underlying object with id, value and extensions. The accessor "getCode" gives direct access to the value
*/
public ResourceInteractionComponent setCodeElement(Enumeration value) {
this.code = value;
return this;
}
/**
* @return Coded identifier of the operation, supported by the system resource.
*/
public TypeRestfulInteraction getCode() {
return this.code == null ? null : this.code.getValue();
}
/**
* @param value Coded identifier of the operation, supported by the system resource.
*/
public ResourceInteractionComponent setCode(TypeRestfulInteraction value) {
if (this.code == null)
this.code = new Enumeration(new TypeRestfulInteractionEnumFactory());
this.code.setValue(value);
return this;
}
/**
* @return {@link #documentation} (Guidance specific to the implementation of this operation, such as 'delete is a logical delete' or 'updates are only allowed with version id' or 'creates permitted from pre-authorized certificates only'.). This is the underlying object with id, value and extensions. The accessor "getDocumentation" gives direct access to the value
*/
public StringType getDocumentationElement() {
if (this.documentation == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create ResourceInteractionComponent.documentation");
else if (Configuration.doAutoCreate())
this.documentation = new StringType(); // bb
return this.documentation;
}
public boolean hasDocumentationElement() {
return this.documentation != null && !this.documentation.isEmpty();
}
public boolean hasDocumentation() {
return this.documentation != null && !this.documentation.isEmpty();
}
/**
* @param value {@link #documentation} (Guidance specific to the implementation of this operation, such as 'delete is a logical delete' or 'updates are only allowed with version id' or 'creates permitted from pre-authorized certificates only'.). This is the underlying object with id, value and extensions. The accessor "getDocumentation" gives direct access to the value
*/
public ResourceInteractionComponent setDocumentationElement(StringType value) {
this.documentation = value;
return this;
}
/**
* @return Guidance specific to the implementation of this operation, such as 'delete is a logical delete' or 'updates are only allowed with version id' or 'creates permitted from pre-authorized certificates only'.
*/
public String getDocumentation() {
return this.documentation == null ? null : this.documentation.getValue();
}
/**
* @param value Guidance specific to the implementation of this operation, such as 'delete is a logical delete' or 'updates are only allowed with version id' or 'creates permitted from pre-authorized certificates only'.
*/
public ResourceInteractionComponent setDocumentation(String value) {
if (Utilities.noString(value))
this.documentation = null;
else {
if (this.documentation == null)
this.documentation = new StringType();
this.documentation.setValue(value);
}
return this;
}
protected void listChildren(List children) {
super.listChildren(children);
children.add(new Property("code", "code", "Coded identifier of the operation, supported by the system resource.", 0, 1, code));
children.add(new Property("documentation", "string", "Guidance specific to the implementation of this operation, such as 'delete is a logical delete' or 'updates are only allowed with version id' or 'creates permitted from pre-authorized certificates only'.", 0, 1, documentation));
}
@Override
public Property getNamedProperty(int _hash, String _name, boolean _checkValid) throws FHIRException {
switch (_hash) {
case 3059181: /*code*/ return new Property("code", "code", "Coded identifier of the operation, supported by the system resource.", 0, 1, code);
case 1587405498: /*documentation*/ return new Property("documentation", "string", "Guidance specific to the implementation of this operation, such as 'delete is a logical delete' or 'updates are only allowed with version id' or 'creates permitted from pre-authorized certificates only'.", 0, 1, documentation);
default: return super.getNamedProperty(_hash, _name, _checkValid);
}
}
@Override
public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException {
switch (hash) {
case 3059181: /*code*/ return this.code == null ? new Base[0] : new Base[] {this.code}; // Enumeration
case 1587405498: /*documentation*/ return this.documentation == null ? new Base[0] : new Base[] {this.documentation}; // StringType
default: return super.getProperty(hash, name, checkValid);
}
}
@Override
public Base setProperty(int hash, String name, Base value) throws FHIRException {
switch (hash) {
case 3059181: // code
value = new TypeRestfulInteractionEnumFactory().fromType(castToCode(value));
this.code = (Enumeration) value; // Enumeration
return value;
case 1587405498: // documentation
this.documentation = castToString(value); // StringType
return value;
default: return super.setProperty(hash, name, value);
}
}
@Override
public Base setProperty(String name, Base value) throws FHIRException {
if (name.equals("code")) {
value = new TypeRestfulInteractionEnumFactory().fromType(castToCode(value));
this.code = (Enumeration) value; // Enumeration
} else if (name.equals("documentation")) {
this.documentation = castToString(value); // StringType
} else
return super.setProperty(name, value);
return value;
}
@Override
public Base makeProperty(int hash, String name) throws FHIRException {
switch (hash) {
case 3059181: return getCodeElement();
case 1587405498: return getDocumentationElement();
default: return super.makeProperty(hash, name);
}
}
@Override
public String[] getTypesForProperty(int hash, String name) throws FHIRException {
switch (hash) {
case 3059181: /*code*/ return new String[] {"code"};
case 1587405498: /*documentation*/ return new String[] {"string"};
default: return super.getTypesForProperty(hash, name);
}
}
@Override
public Base addChild(String name) throws FHIRException {
if (name.equals("code")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.code");
}
else if (name.equals("documentation")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.documentation");
}
else
return super.addChild(name);
}
public ResourceInteractionComponent copy() {
ResourceInteractionComponent dst = new ResourceInteractionComponent();
copyValues(dst);
dst.code = code == null ? null : code.copy();
dst.documentation = documentation == null ? null : documentation.copy();
return dst;
}
@Override
public boolean equalsDeep(Base other_) {
if (!super.equalsDeep(other_))
return false;
if (!(other_ instanceof ResourceInteractionComponent))
return false;
ResourceInteractionComponent o = (ResourceInteractionComponent) other_;
return compareDeep(code, o.code, true) && compareDeep(documentation, o.documentation, true);
}
@Override
public boolean equalsShallow(Base other_) {
if (!super.equalsShallow(other_))
return false;
if (!(other_ instanceof ResourceInteractionComponent))
return false;
ResourceInteractionComponent o = (ResourceInteractionComponent) other_;
return compareValues(code, o.code, true) && compareValues(documentation, o.documentation, true);
}
public boolean isEmpty() {
return super.isEmpty() && ca.uhn.fhir.util.ElementUtil.isEmpty(code, documentation);
}
public String fhirType() {
return "CapabilityStatement.rest.resource.interaction";
}
}
@Block()
public static class CapabilityStatementRestResourceSearchParamComponent extends BackboneElement implements IBaseBackboneElement {
/**
* The name of the search parameter used in the interface.
*/
@Child(name = "name", type = {StringType.class}, order=1, min=1, max=1, modifier=false, summary=false)
@Description(shortDefinition="Name of search parameter", formalDefinition="The name of the search parameter used in the interface." )
protected StringType name;
/**
* An absolute URI that is a formal reference to where this parameter was first defined, so that a client can be confident of the meaning of the search parameter (a reference to [[[SearchParameter.url]]]).
*/
@Child(name = "definition", type = {UriType.class}, order=2, min=0, max=1, modifier=false, summary=false)
@Description(shortDefinition="Source of definition for parameter", formalDefinition="An absolute URI that is a formal reference to where this parameter was first defined, so that a client can be confident of the meaning of the search parameter (a reference to [[[SearchParameter.url]]])." )
protected UriType definition;
/**
* The type of value a search parameter refers to, and how the content is interpreted.
*/
@Child(name = "type", type = {CodeType.class}, order=3, min=1, max=1, modifier=false, summary=false)
@Description(shortDefinition="number | date | string | token | reference | composite | quantity | uri", formalDefinition="The type of value a search parameter refers to, and how the content is interpreted." )
@ca.uhn.fhir.model.api.annotation.Binding(valueSet="http://hl7.org/fhir/ValueSet/search-param-type")
protected Enumeration type;
/**
* This allows documentation of any distinct behaviors about how the search parameter is used. For example, text matching algorithms.
*/
@Child(name = "documentation", type = {StringType.class}, order=4, min=0, max=1, modifier=false, summary=false)
@Description(shortDefinition="Server-specific usage", formalDefinition="This allows documentation of any distinct behaviors about how the search parameter is used. For example, text matching algorithms." )
protected StringType documentation;
private static final long serialVersionUID = 72133006L;
/**
* Constructor
*/
public CapabilityStatementRestResourceSearchParamComponent() {
super();
}
/**
* Constructor
*/
public CapabilityStatementRestResourceSearchParamComponent(StringType name, Enumeration type) {
super();
this.name = name;
this.type = type;
}
/**
* @return {@link #name} (The name of the search parameter used in the interface.). This is the underlying object with id, value and extensions. The accessor "getName" gives direct access to the value
*/
public StringType getNameElement() {
if (this.name == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementRestResourceSearchParamComponent.name");
else if (Configuration.doAutoCreate())
this.name = new StringType(); // bb
return this.name;
}
public boolean hasNameElement() {
return this.name != null && !this.name.isEmpty();
}
public boolean hasName() {
return this.name != null && !this.name.isEmpty();
}
/**
* @param value {@link #name} (The name of the search parameter used in the interface.). This is the underlying object with id, value and extensions. The accessor "getName" gives direct access to the value
*/
public CapabilityStatementRestResourceSearchParamComponent setNameElement(StringType value) {
this.name = value;
return this;
}
/**
* @return The name of the search parameter used in the interface.
*/
public String getName() {
return this.name == null ? null : this.name.getValue();
}
/**
* @param value The name of the search parameter used in the interface.
*/
public CapabilityStatementRestResourceSearchParamComponent setName(String value) {
if (this.name == null)
this.name = new StringType();
this.name.setValue(value);
return this;
}
/**
* @return {@link #definition} (An absolute URI that is a formal reference to where this parameter was first defined, so that a client can be confident of the meaning of the search parameter (a reference to [[[SearchParameter.url]]]).). This is the underlying object with id, value and extensions. The accessor "getDefinition" gives direct access to the value
*/
public UriType getDefinitionElement() {
if (this.definition == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementRestResourceSearchParamComponent.definition");
else if (Configuration.doAutoCreate())
this.definition = new UriType(); // bb
return this.definition;
}
public boolean hasDefinitionElement() {
return this.definition != null && !this.definition.isEmpty();
}
public boolean hasDefinition() {
return this.definition != null && !this.definition.isEmpty();
}
/**
* @param value {@link #definition} (An absolute URI that is a formal reference to where this parameter was first defined, so that a client can be confident of the meaning of the search parameter (a reference to [[[SearchParameter.url]]]).). This is the underlying object with id, value and extensions. The accessor "getDefinition" gives direct access to the value
*/
public CapabilityStatementRestResourceSearchParamComponent setDefinitionElement(UriType value) {
this.definition = value;
return this;
}
/**
* @return An absolute URI that is a formal reference to where this parameter was first defined, so that a client can be confident of the meaning of the search parameter (a reference to [[[SearchParameter.url]]]).
*/
public String getDefinition() {
return this.definition == null ? null : this.definition.getValue();
}
/**
* @param value An absolute URI that is a formal reference to where this parameter was first defined, so that a client can be confident of the meaning of the search parameter (a reference to [[[SearchParameter.url]]]).
*/
public CapabilityStatementRestResourceSearchParamComponent setDefinition(String value) {
if (Utilities.noString(value))
this.definition = null;
else {
if (this.definition == null)
this.definition = new UriType();
this.definition.setValue(value);
}
return this;
}
/**
* @return {@link #type} (The type of value a search parameter refers to, and how the content is interpreted.). This is the underlying object with id, value and extensions. The accessor "getType" gives direct access to the value
*/
public Enumeration getTypeElement() {
if (this.type == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementRestResourceSearchParamComponent.type");
else if (Configuration.doAutoCreate())
this.type = new Enumeration(new SearchParamTypeEnumFactory()); // bb
return this.type;
}
public boolean hasTypeElement() {
return this.type != null && !this.type.isEmpty();
}
public boolean hasType() {
return this.type != null && !this.type.isEmpty();
}
/**
* @param value {@link #type} (The type of value a search parameter refers to, and how the content is interpreted.). This is the underlying object with id, value and extensions. The accessor "getType" gives direct access to the value
*/
public CapabilityStatementRestResourceSearchParamComponent setTypeElement(Enumeration value) {
this.type = value;
return this;
}
/**
* @return The type of value a search parameter refers to, and how the content is interpreted.
*/
public SearchParamType getType() {
return this.type == null ? null : this.type.getValue();
}
/**
* @param value The type of value a search parameter refers to, and how the content is interpreted.
*/
public CapabilityStatementRestResourceSearchParamComponent setType(SearchParamType value) {
if (this.type == null)
this.type = new Enumeration(new SearchParamTypeEnumFactory());
this.type.setValue(value);
return this;
}
/**
* @return {@link #documentation} (This allows documentation of any distinct behaviors about how the search parameter is used. For example, text matching algorithms.). This is the underlying object with id, value and extensions. The accessor "getDocumentation" gives direct access to the value
*/
public StringType getDocumentationElement() {
if (this.documentation == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementRestResourceSearchParamComponent.documentation");
else if (Configuration.doAutoCreate())
this.documentation = new StringType(); // bb
return this.documentation;
}
public boolean hasDocumentationElement() {
return this.documentation != null && !this.documentation.isEmpty();
}
public boolean hasDocumentation() {
return this.documentation != null && !this.documentation.isEmpty();
}
/**
* @param value {@link #documentation} (This allows documentation of any distinct behaviors about how the search parameter is used. For example, text matching algorithms.). This is the underlying object with id, value and extensions. The accessor "getDocumentation" gives direct access to the value
*/
public CapabilityStatementRestResourceSearchParamComponent setDocumentationElement(StringType value) {
this.documentation = value;
return this;
}
/**
* @return This allows documentation of any distinct behaviors about how the search parameter is used. For example, text matching algorithms.
*/
public String getDocumentation() {
return this.documentation == null ? null : this.documentation.getValue();
}
/**
* @param value This allows documentation of any distinct behaviors about how the search parameter is used. For example, text matching algorithms.
*/
public CapabilityStatementRestResourceSearchParamComponent setDocumentation(String value) {
if (Utilities.noString(value))
this.documentation = null;
else {
if (this.documentation == null)
this.documentation = new StringType();
this.documentation.setValue(value);
}
return this;
}
protected void listChildren(List children) {
super.listChildren(children);
children.add(new Property("name", "string", "The name of the search parameter used in the interface.", 0, 1, name));
children.add(new Property("definition", "uri", "An absolute URI that is a formal reference to where this parameter was first defined, so that a client can be confident of the meaning of the search parameter (a reference to [[[SearchParameter.url]]]).", 0, 1, definition));
children.add(new Property("type", "code", "The type of value a search parameter refers to, and how the content is interpreted.", 0, 1, type));
children.add(new Property("documentation", "string", "This allows documentation of any distinct behaviors about how the search parameter is used. For example, text matching algorithms.", 0, 1, documentation));
}
@Override
public Property getNamedProperty(int _hash, String _name, boolean _checkValid) throws FHIRException {
switch (_hash) {
case 3373707: /*name*/ return new Property("name", "string", "The name of the search parameter used in the interface.", 0, 1, name);
case -1014418093: /*definition*/ return new Property("definition", "uri", "An absolute URI that is a formal reference to where this parameter was first defined, so that a client can be confident of the meaning of the search parameter (a reference to [[[SearchParameter.url]]]).", 0, 1, definition);
case 3575610: /*type*/ return new Property("type", "code", "The type of value a search parameter refers to, and how the content is interpreted.", 0, 1, type);
case 1587405498: /*documentation*/ return new Property("documentation", "string", "This allows documentation of any distinct behaviors about how the search parameter is used. For example, text matching algorithms.", 0, 1, documentation);
default: return super.getNamedProperty(_hash, _name, _checkValid);
}
}
@Override
public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException {
switch (hash) {
case 3373707: /*name*/ return this.name == null ? new Base[0] : new Base[] {this.name}; // StringType
case -1014418093: /*definition*/ return this.definition == null ? new Base[0] : new Base[] {this.definition}; // UriType
case 3575610: /*type*/ return this.type == null ? new Base[0] : new Base[] {this.type}; // Enumeration
case 1587405498: /*documentation*/ return this.documentation == null ? new Base[0] : new Base[] {this.documentation}; // StringType
default: return super.getProperty(hash, name, checkValid);
}
}
@Override
public Base setProperty(int hash, String name, Base value) throws FHIRException {
switch (hash) {
case 3373707: // name
this.name = castToString(value); // StringType
return value;
case -1014418093: // definition
this.definition = castToUri(value); // UriType
return value;
case 3575610: // type
value = new SearchParamTypeEnumFactory().fromType(castToCode(value));
this.type = (Enumeration) value; // Enumeration
return value;
case 1587405498: // documentation
this.documentation = castToString(value); // StringType
return value;
default: return super.setProperty(hash, name, value);
}
}
@Override
public Base setProperty(String name, Base value) throws FHIRException {
if (name.equals("name")) {
this.name = castToString(value); // StringType
} else if (name.equals("definition")) {
this.definition = castToUri(value); // UriType
} else if (name.equals("type")) {
value = new SearchParamTypeEnumFactory().fromType(castToCode(value));
this.type = (Enumeration) value; // Enumeration
} else if (name.equals("documentation")) {
this.documentation = castToString(value); // StringType
} else
return super.setProperty(name, value);
return value;
}
@Override
public Base makeProperty(int hash, String name) throws FHIRException {
switch (hash) {
case 3373707: return getNameElement();
case -1014418093: return getDefinitionElement();
case 3575610: return getTypeElement();
case 1587405498: return getDocumentationElement();
default: return super.makeProperty(hash, name);
}
}
@Override
public String[] getTypesForProperty(int hash, String name) throws FHIRException {
switch (hash) {
case 3373707: /*name*/ return new String[] {"string"};
case -1014418093: /*definition*/ return new String[] {"uri"};
case 3575610: /*type*/ return new String[] {"code"};
case 1587405498: /*documentation*/ return new String[] {"string"};
default: return super.getTypesForProperty(hash, name);
}
}
@Override
public Base addChild(String name) throws FHIRException {
if (name.equals("name")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.name");
}
else if (name.equals("definition")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.definition");
}
else if (name.equals("type")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.type");
}
else if (name.equals("documentation")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.documentation");
}
else
return super.addChild(name);
}
public CapabilityStatementRestResourceSearchParamComponent copy() {
CapabilityStatementRestResourceSearchParamComponent dst = new CapabilityStatementRestResourceSearchParamComponent();
copyValues(dst);
dst.name = name == null ? null : name.copy();
dst.definition = definition == null ? null : definition.copy();
dst.type = type == null ? null : type.copy();
dst.documentation = documentation == null ? null : documentation.copy();
return dst;
}
@Override
public boolean equalsDeep(Base other_) {
if (!super.equalsDeep(other_))
return false;
if (!(other_ instanceof CapabilityStatementRestResourceSearchParamComponent))
return false;
CapabilityStatementRestResourceSearchParamComponent o = (CapabilityStatementRestResourceSearchParamComponent) other_;
return compareDeep(name, o.name, true) && compareDeep(definition, o.definition, true) && compareDeep(type, o.type, true)
&& compareDeep(documentation, o.documentation, true);
}
@Override
public boolean equalsShallow(Base other_) {
if (!super.equalsShallow(other_))
return false;
if (!(other_ instanceof CapabilityStatementRestResourceSearchParamComponent))
return false;
CapabilityStatementRestResourceSearchParamComponent o = (CapabilityStatementRestResourceSearchParamComponent) other_;
return compareValues(name, o.name, true) && compareValues(definition, o.definition, true) && compareValues(type, o.type, true)
&& compareValues(documentation, o.documentation, true);
}
public boolean isEmpty() {
return super.isEmpty() && ca.uhn.fhir.util.ElementUtil.isEmpty(name, definition, type, documentation
);
}
public String fhirType() {
return "CapabilityStatement.rest.resource.searchParam";
}
}
@Block()
public static class SystemInteractionComponent extends BackboneElement implements IBaseBackboneElement {
/**
* A coded identifier of the operation, supported by the system.
*/
@Child(name = "code", type = {CodeType.class}, order=1, min=1, max=1, modifier=false, summary=false)
@Description(shortDefinition="transaction | batch | search-system | history-system", formalDefinition="A coded identifier of the operation, supported by the system." )
@ca.uhn.fhir.model.api.annotation.Binding(valueSet="http://hl7.org/fhir/ValueSet/system-restful-interaction")
protected Enumeration code;
/**
* Guidance specific to the implementation of this operation, such as limitations on the kind of transactions allowed, or information about system wide search is implemented.
*/
@Child(name = "documentation", type = {StringType.class}, order=2, min=0, max=1, modifier=false, summary=false)
@Description(shortDefinition="Anything special about operation behavior", formalDefinition="Guidance specific to the implementation of this operation, such as limitations on the kind of transactions allowed, or information about system wide search is implemented." )
protected StringType documentation;
private static final long serialVersionUID = 510675287L;
/**
* Constructor
*/
public SystemInteractionComponent() {
super();
}
/**
* Constructor
*/
public SystemInteractionComponent(Enumeration code) {
super();
this.code = code;
}
/**
* @return {@link #code} (A coded identifier of the operation, supported by the system.). This is the underlying object with id, value and extensions. The accessor "getCode" gives direct access to the value
*/
public Enumeration getCodeElement() {
if (this.code == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create SystemInteractionComponent.code");
else if (Configuration.doAutoCreate())
this.code = new Enumeration(new SystemRestfulInteractionEnumFactory()); // bb
return this.code;
}
public boolean hasCodeElement() {
return this.code != null && !this.code.isEmpty();
}
public boolean hasCode() {
return this.code != null && !this.code.isEmpty();
}
/**
* @param value {@link #code} (A coded identifier of the operation, supported by the system.). This is the underlying object with id, value and extensions. The accessor "getCode" gives direct access to the value
*/
public SystemInteractionComponent setCodeElement(Enumeration value) {
this.code = value;
return this;
}
/**
* @return A coded identifier of the operation, supported by the system.
*/
public SystemRestfulInteraction getCode() {
return this.code == null ? null : this.code.getValue();
}
/**
* @param value A coded identifier of the operation, supported by the system.
*/
public SystemInteractionComponent setCode(SystemRestfulInteraction value) {
if (this.code == null)
this.code = new Enumeration(new SystemRestfulInteractionEnumFactory());
this.code.setValue(value);
return this;
}
/**
* @return {@link #documentation} (Guidance specific to the implementation of this operation, such as limitations on the kind of transactions allowed, or information about system wide search is implemented.). This is the underlying object with id, value and extensions. The accessor "getDocumentation" gives direct access to the value
*/
public StringType getDocumentationElement() {
if (this.documentation == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create SystemInteractionComponent.documentation");
else if (Configuration.doAutoCreate())
this.documentation = new StringType(); // bb
return this.documentation;
}
public boolean hasDocumentationElement() {
return this.documentation != null && !this.documentation.isEmpty();
}
public boolean hasDocumentation() {
return this.documentation != null && !this.documentation.isEmpty();
}
/**
* @param value {@link #documentation} (Guidance specific to the implementation of this operation, such as limitations on the kind of transactions allowed, or information about system wide search is implemented.). This is the underlying object with id, value and extensions. The accessor "getDocumentation" gives direct access to the value
*/
public SystemInteractionComponent setDocumentationElement(StringType value) {
this.documentation = value;
return this;
}
/**
* @return Guidance specific to the implementation of this operation, such as limitations on the kind of transactions allowed, or information about system wide search is implemented.
*/
public String getDocumentation() {
return this.documentation == null ? null : this.documentation.getValue();
}
/**
* @param value Guidance specific to the implementation of this operation, such as limitations on the kind of transactions allowed, or information about system wide search is implemented.
*/
public SystemInteractionComponent setDocumentation(String value) {
if (Utilities.noString(value))
this.documentation = null;
else {
if (this.documentation == null)
this.documentation = new StringType();
this.documentation.setValue(value);
}
return this;
}
protected void listChildren(List children) {
super.listChildren(children);
children.add(new Property("code", "code", "A coded identifier of the operation, supported by the system.", 0, 1, code));
children.add(new Property("documentation", "string", "Guidance specific to the implementation of this operation, such as limitations on the kind of transactions allowed, or information about system wide search is implemented.", 0, 1, documentation));
}
@Override
public Property getNamedProperty(int _hash, String _name, boolean _checkValid) throws FHIRException {
switch (_hash) {
case 3059181: /*code*/ return new Property("code", "code", "A coded identifier of the operation, supported by the system.", 0, 1, code);
case 1587405498: /*documentation*/ return new Property("documentation", "string", "Guidance specific to the implementation of this operation, such as limitations on the kind of transactions allowed, or information about system wide search is implemented.", 0, 1, documentation);
default: return super.getNamedProperty(_hash, _name, _checkValid);
}
}
@Override
public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException {
switch (hash) {
case 3059181: /*code*/ return this.code == null ? new Base[0] : new Base[] {this.code}; // Enumeration
case 1587405498: /*documentation*/ return this.documentation == null ? new Base[0] : new Base[] {this.documentation}; // StringType
default: return super.getProperty(hash, name, checkValid);
}
}
@Override
public Base setProperty(int hash, String name, Base value) throws FHIRException {
switch (hash) {
case 3059181: // code
value = new SystemRestfulInteractionEnumFactory().fromType(castToCode(value));
this.code = (Enumeration) value; // Enumeration
return value;
case 1587405498: // documentation
this.documentation = castToString(value); // StringType
return value;
default: return super.setProperty(hash, name, value);
}
}
@Override
public Base setProperty(String name, Base value) throws FHIRException {
if (name.equals("code")) {
value = new SystemRestfulInteractionEnumFactory().fromType(castToCode(value));
this.code = (Enumeration) value; // Enumeration
} else if (name.equals("documentation")) {
this.documentation = castToString(value); // StringType
} else
return super.setProperty(name, value);
return value;
}
@Override
public Base makeProperty(int hash, String name) throws FHIRException {
switch (hash) {
case 3059181: return getCodeElement();
case 1587405498: return getDocumentationElement();
default: return super.makeProperty(hash, name);
}
}
@Override
public String[] getTypesForProperty(int hash, String name) throws FHIRException {
switch (hash) {
case 3059181: /*code*/ return new String[] {"code"};
case 1587405498: /*documentation*/ return new String[] {"string"};
default: return super.getTypesForProperty(hash, name);
}
}
@Override
public Base addChild(String name) throws FHIRException {
if (name.equals("code")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.code");
}
else if (name.equals("documentation")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.documentation");
}
else
return super.addChild(name);
}
public SystemInteractionComponent copy() {
SystemInteractionComponent dst = new SystemInteractionComponent();
copyValues(dst);
dst.code = code == null ? null : code.copy();
dst.documentation = documentation == null ? null : documentation.copy();
return dst;
}
@Override
public boolean equalsDeep(Base other_) {
if (!super.equalsDeep(other_))
return false;
if (!(other_ instanceof SystemInteractionComponent))
return false;
SystemInteractionComponent o = (SystemInteractionComponent) other_;
return compareDeep(code, o.code, true) && compareDeep(documentation, o.documentation, true);
}
@Override
public boolean equalsShallow(Base other_) {
if (!super.equalsShallow(other_))
return false;
if (!(other_ instanceof SystemInteractionComponent))
return false;
SystemInteractionComponent o = (SystemInteractionComponent) other_;
return compareValues(code, o.code, true) && compareValues(documentation, o.documentation, true);
}
public boolean isEmpty() {
return super.isEmpty() && ca.uhn.fhir.util.ElementUtil.isEmpty(code, documentation);
}
public String fhirType() {
return "CapabilityStatement.rest.interaction";
}
}
@Block()
public static class CapabilityStatementRestOperationComponent extends BackboneElement implements IBaseBackboneElement {
/**
* The name of the operation or query. For an operation, this is the name prefixed with $ and used in the URL. For a query, this is the name used in the _query parameter when the query is called.
*/
@Child(name = "name", type = {StringType.class}, order=1, min=1, max=1, modifier=false, summary=false)
@Description(shortDefinition="Name by which the operation/query is invoked", formalDefinition="The name of the operation or query. For an operation, this is the name prefixed with $ and used in the URL. For a query, this is the name used in the _query parameter when the query is called." )
protected StringType name;
/**
* Where the formal definition can be found.
*/
@Child(name = "definition", type = {OperationDefinition.class}, order=2, min=1, max=1, modifier=false, summary=true)
@Description(shortDefinition="The defined operation/query", formalDefinition="Where the formal definition can be found." )
protected Reference definition;
/**
* The actual object that is the target of the reference (Where the formal definition can be found.)
*/
protected OperationDefinition definitionTarget;
private static final long serialVersionUID = 122107272L;
/**
* Constructor
*/
public CapabilityStatementRestOperationComponent() {
super();
}
/**
* Constructor
*/
public CapabilityStatementRestOperationComponent(StringType name, Reference definition) {
super();
this.name = name;
this.definition = definition;
}
/**
* @return {@link #name} (The name of the operation or query. For an operation, this is the name prefixed with $ and used in the URL. For a query, this is the name used in the _query parameter when the query is called.). This is the underlying object with id, value and extensions. The accessor "getName" gives direct access to the value
*/
public StringType getNameElement() {
if (this.name == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementRestOperationComponent.name");
else if (Configuration.doAutoCreate())
this.name = new StringType(); // bb
return this.name;
}
public boolean hasNameElement() {
return this.name != null && !this.name.isEmpty();
}
public boolean hasName() {
return this.name != null && !this.name.isEmpty();
}
/**
* @param value {@link #name} (The name of the operation or query. For an operation, this is the name prefixed with $ and used in the URL. For a query, this is the name used in the _query parameter when the query is called.). This is the underlying object with id, value and extensions. The accessor "getName" gives direct access to the value
*/
public CapabilityStatementRestOperationComponent setNameElement(StringType value) {
this.name = value;
return this;
}
/**
* @return The name of the operation or query. For an operation, this is the name prefixed with $ and used in the URL. For a query, this is the name used in the _query parameter when the query is called.
*/
public String getName() {
return this.name == null ? null : this.name.getValue();
}
/**
* @param value The name of the operation or query. For an operation, this is the name prefixed with $ and used in the URL. For a query, this is the name used in the _query parameter when the query is called.
*/
public CapabilityStatementRestOperationComponent setName(String value) {
if (this.name == null)
this.name = new StringType();
this.name.setValue(value);
return this;
}
/**
* @return {@link #definition} (Where the formal definition can be found.)
*/
public Reference getDefinition() {
if (this.definition == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementRestOperationComponent.definition");
else if (Configuration.doAutoCreate())
this.definition = new Reference(); // cc
return this.definition;
}
public boolean hasDefinition() {
return this.definition != null && !this.definition.isEmpty();
}
/**
* @param value {@link #definition} (Where the formal definition can be found.)
*/
public CapabilityStatementRestOperationComponent setDefinition(Reference value) {
this.definition = value;
return this;
}
/**
* @return {@link #definition} The actual object that is the target of the reference. The reference library doesn't populate this, but you can use it to hold the resource if you resolve it. (Where the formal definition can be found.)
*/
public OperationDefinition getDefinitionTarget() {
if (this.definitionTarget == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CapabilityStatementRestOperationComponent.definition");
else if (Configuration.doAutoCreate())
this.definitionTarget = new OperationDefinition(); // aa
return this.definitionTarget;
}
/**
* @param value {@link #definition} The actual object that is the target of the reference. The reference library doesn't use these, but you can use it to hold the resource if you resolve it. (Where the formal definition can be found.)
*/
public CapabilityStatementRestOperationComponent setDefinitionTarget(OperationDefinition value) {
this.definitionTarget = value;
return this;
}
protected void listChildren(List children) {
super.listChildren(children);
children.add(new Property("name", "string", "The name of the operation or query. For an operation, this is the name prefixed with $ and used in the URL. For a query, this is the name used in the _query parameter when the query is called.", 0, 1, name));
children.add(new Property("definition", "Reference(OperationDefinition)", "Where the formal definition can be found.", 0, 1, definition));
}
@Override
public Property getNamedProperty(int _hash, String _name, boolean _checkValid) throws FHIRException {
switch (_hash) {
case 3373707: /*name*/ return new Property("name", "string", "The name of the operation or query. For an operation, this is the name prefixed with $ and used in the URL. For a query, this is the name used in the _query parameter when the query is called.", 0, 1, name);
case -1014418093: /*definition*/ return new Property("definition", "Reference(OperationDefinition)", "Where the formal definition can be found.", 0, 1, definition);
default: return super.getNamedProperty(_hash, _name, _checkValid);
}
}
@Override
public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException {
switch (hash) {
case 3373707: /*name*/ return this.name == null ? new Base[0] : new Base[] {this.name}; // StringType
case -1014418093: /*definition*/ return this.definition == null ? new Base[0] : new Base[] {this.definition}; // Reference
default: return super.getProperty(hash, name, checkValid);
}
}
@Override
public Base setProperty(int hash, String name, Base value) throws FHIRException {
switch (hash) {
case 3373707: // name
this.name = castToString(value); // StringType
return value;
case -1014418093: // definition
this.definition = castToReference(value); // Reference
return value;
default: return super.setProperty(hash, name, value);
}
}
@Override
public Base setProperty(String name, Base value) throws FHIRException {
if (name.equals("name")) {
this.name = castToString(value); // StringType
} else if (name.equals("definition")) {
this.definition = castToReference(value); // Reference
} else
return super.setProperty(name, value);
return value;
}
@Override
public Base makeProperty(int hash, String name) throws FHIRException {
switch (hash) {
case 3373707: return getNameElement();
case -1014418093: return getDefinition();
default: return super.makeProperty(hash, name);
}
}
@Override
public String[] getTypesForProperty(int hash, String name) throws FHIRException {
switch (hash) {
case 3373707: /*name*/ return new String[] {"string"};
case -1014418093: /*definition*/ return new String[] {"Reference"};
default: return super.getTypesForProperty(hash, name);
}
}
@Override
public Base addChild(String name) throws FHIRException {
if (name.equals("name")) {
throw new FHIRException("Cannot call addChild on a singleton property CapabilityStatement.name");
}
else if (name.equals("definition")) {
this.definition = new Reference();
return this.definition;
}
else
return super.addChild(name);
}
public CapabilityStatementRestOperationComponent copy() {
CapabilityStatementRestOperationComponent dst = new CapabilityStatementRestOperationComponent();
copyValues(dst);
dst.name = name == null ? null : name.copy();
dst.definition = definition == null ? null : definition.copy();
return dst;
}
@Override
public boolean equalsDeep(Base other_) {
if (!super.equalsDeep(other_))
return false;
if (!(other_ instanceof CapabilityStatementRestOperationComponent))
return false;
CapabilityStatementRestOperationComponent o = (CapabilityStatementRestOperationComponent) other_;
return compareDeep(name, o.name, true) && compareDeep(definition, o.definition, true);
}
@Override
public boolean equalsShallow(Base other_) {
if (!super.equalsShallow(other_))
return false;
if (!(other_ instanceof CapabilityStatementRestOperationComponent))
return false;
CapabilityStatementRestOperationComponent o = (CapabilityStatementRestOperationComponent) other_;
return compareValues(name, o.name, true);
}
public boolean isEmpty() {
return super.isEmpty() && ca.uhn.fhir.util.ElementUtil.isEmpty(name, definition);
}
public String fhirType() {
return "CapabilityStatement.rest.operation";
}
}
@Block()
public static class CapabilityStatementMessagingComponent extends BackboneElement implements IBaseBackboneElement {
/**
* An endpoint (network accessible address) to which messages and/or replies are to be sent.
*/
@Child(name = "endpoint", type = {}, order=1, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false)
@Description(shortDefinition="Where messages should be sent", formalDefinition="An endpoint (network accessible address) to which messages and/or replies are to be sent." )
protected List endpoint;
/**
* Length if the receiver's reliable messaging cache in minutes (if a receiver) or how long the cache length on the receiver should be (if a sender).
*/
@Child(name = "reliableCache", type = {UnsignedIntType.class}, order=2, min=0, max=1, modifier=false, summary=false)
@Description(shortDefinition="Reliable Message Cache Length (min)", formalDefinition="Length if the receiver's reliable messaging cache in minutes (if a receiver) or how long the cache length on the receiver should be (if a sender)." )
protected UnsignedIntType reliableCache;
/**
* Documentation about the system's messaging capabilities for this endpoint not otherwise documented by the capability statement. For example, the process for becoming an authorized messaging exchange partner.
*/
@Child(name = "documentation", type = {StringType.class}, order=3, min=0, max=1, modifier=false, summary=false)
@Description(shortDefinition="Messaging interface behavior details", formalDefinition="Documentation about the system's messaging capabilities for this endpoint not otherwise documented by the capability statement. For example, the process for becoming an authorized messaging exchange partner." )
protected StringType documentation;
/**
* References to message definitions for messages this system can send or receive.
*/
@Child(name = "supportedMessage", type = {}, order=4, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=true)
@Description(shortDefinition="Messages supported by this system", formalDefinition="References to message definitions for messages this system can send or receive." )
protected List supportedMessage;
/**
* A description of the solution's support for an event at this end-point.
*/
@Child(name = "event", type = {}, order=5, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=true)
@Description(shortDefinition="Declare support for this event", formalDefinition="A description of the solution's support for an event at this end-point." )
protected List event;
private static final long serialVersionUID = 816243355L;
/**
* Constructor
*/
public CapabilityStatementMessagingComponent() {
super();
}
/**
* @return {@link #endpoint} (An endpoint (network accessible address) to which messages and/or replies are to be sent.)
*/
public List getEndpoint() {
if (this.endpoint == null)
this.endpoint = new ArrayList();
return this.endpoint;
}
/**
* @return Returns a reference to this
for easy method chaining
*/
public CapabilityStatementMessagingComponent setEndpoint(List theEndpoint) {
this.endpoint = theEndpoint;
return this;
}
public boolean hasEndpoint() {
if (this.endpoint == null)
return false;
for (CapabilityStatementMessagingEndpointComponent item : this.endpoint)
if (!item.isEmpty())
return true;
return false;
}
public CapabilityStatementMessagingEndpointComponent addEndpoint() { //3
CapabilityStatementMessagingEndpointComponent t = new CapabilityStatementMessagingEndpointComponent();
if (this.endpoint == null)
this.endpoint = new ArrayList