当前位置: 首页>>代码示例>>Java>>正文


Java BundleEntry.getResource方法代码示例

本文整理汇总了Java中ca.uhn.fhir.model.api.BundleEntry.getResource方法的典型用法代码示例。如果您正苦于以下问题:Java BundleEntry.getResource方法的具体用法?Java BundleEntry.getResource怎么用?Java BundleEntry.getResource使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ca.uhn.fhir.model.api.BundleEntry的用法示例。


在下文中一共展示了BundleEntry.getResource方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: testSearchWithIncludes

import ca.uhn.fhir.model.api.BundleEntry; //导入方法依赖的package包/类
@Test
public void testSearchWithIncludes() throws Exception {

	HttpGet httpGet = new HttpGet("http://localhost:" + ourPort + "/Patient?withIncludes=include1&_include=include2&_include=include3");
	HttpResponse status = ourClient.execute(httpGet);

	String responseContent = IOUtils.toString(status.getEntity().getContent());
	IOUtils.closeQuietly(status.getEntity().getContent());

	ourLog.info("Response was:\n{}", responseContent);

	assertEquals(200, status.getStatusLine().getStatusCode());
	Bundle bundle = ourCtx.newXmlParser().parseBundle(responseContent);

	BundleEntry entry0 = bundle.getEntries().get(0);
	Patient patient = (Patient) entry0.getResource();
	assertEquals("include1", patient.getCommunication().get(0).getText().getValue());
	assertEquals("include2", patient.getAddress().get(0).getLine().get(0).getValue());
	assertEquals("include3", patient.getAddress().get(1).getLine().get(0).getValue());
}
 
开发者ID:gajen0981,项目名称:FHIR-Server,代码行数:21,代码来源:RestfulServerMethodTest.java

示例2: validateBundle

import ca.uhn.fhir.model.api.BundleEntry; //导入方法依赖的package包/类
@Override
public void validateBundle(ValidationContext<Bundle> theContext) {
	for (BundleEntry next : theContext.getResource().getEntries()) {
		if (next.getResource() != null) {
			ValidationContext<IResource> ctx = ValidationContext.newChild(theContext, next.getResource());
			validateResource(ctx);
		}
	}
}
 
开发者ID:gajen0981,项目名称:FHIR-Server,代码行数:10,代码来源:SchematronBaseValidator.java

示例3: wereBack

import ca.uhn.fhir.model.api.BundleEntry; //导入方法依赖的package包/类
@Override
public void wereBack() {
	for (BundleEntry nextEntry : myInstance.getEntries()) {
		IResource nextResource = nextEntry.getResource();
		if (nextResource == null) {
			continue;
		}

		String bundleBaseUrl = myInstance.getLinkBase().getValue();
		String entryBaseUrl = nextEntry.getLinkBase().getValue();
		String version = ResourceMetadataKeyEnum.VERSION.get(nextResource);
		String resourceName = myContext.getResourceDefinition(nextResource).getName();
		String bundleIdPart = nextResource.getId().getIdPart();
		if (isNotBlank(bundleIdPart)) {
			if (isNotBlank(entryBaseUrl)) {
				nextResource.setId(new IdDt(entryBaseUrl, resourceName, bundleIdPart, version));
			} else {
				nextResource.setId(new IdDt(bundleBaseUrl, resourceName, bundleIdPart, version));
			}
		}
	}

	String bundleVersion = (String) myInstance.getResourceMetadata().get(ResourceMetadataKeyEnum.VERSION);
	String baseUrl = myInstance.getLinkBase().getValue();
	String id = myInstance.getId().getIdPart();
	if (isNotBlank(id)) {
		myInstance.setId(new IdDt(baseUrl, "Bundle", id, bundleVersion));
	}

}
 
开发者ID:gajen0981,项目名称:FHIR-Server,代码行数:31,代码来源:ParserState.java

示例4: determineResourceBaseUrl

import ca.uhn.fhir.model.api.BundleEntry; //导入方法依赖的package包/类
protected String determineResourceBaseUrl(String bundleBaseUrl, BundleEntry theEntry) {
	IResource resource = theEntry.getResource();
	if (resource == null) {
		return null;
	}

	String resourceBaseUrl = null;
	if (resource.getId() != null && resource.getId().hasBaseUrl()) {
		if (!resource.getId().getBaseUrl().equals(bundleBaseUrl)) {
			resourceBaseUrl = resource.getId().getBaseUrl();
		}
	}
	return resourceBaseUrl;
}
 
开发者ID:gajen0981,项目名称:FHIR-Server,代码行数:15,代码来源:BaseParser.java

示例5: testParseBundle

import ca.uhn.fhir.model.api.BundleEntry; //导入方法依赖的package包/类
@Test
public void testParseBundle() throws DataFormatException, IOException {

	String msg = IOUtils.toString(XmlParser.class.getResourceAsStream("/atom-document-large.json"));
	IParser p = ourCtx.newJsonParser();
	Bundle bundle = p.parseBundle(msg);

	assertEquals(1, bundle.getCategories().size());
	assertEquals("http://scheme", bundle.getCategories().get(0).getScheme());
	assertEquals("http://term", bundle.getCategories().get(0).getTerm());
	assertEquals("label", bundle.getCategories().get(0).getLabel());

	String encoded = ourCtx.newXmlParser().setPrettyPrint(true).encodeBundleToString(bundle);
	ourLog.info(encoded);

	assertEquals("http://fhir.healthintersections.com.au/open/DiagnosticReport/_search?_format=application/json+fhir&search-id=46d5f0e7-9240-4d4f-9f51-f8ac975c65&search-sort=_id", bundle
			.getLinkSelf().getValue());
	assertEquals("urn:uuid:0b754ff9-03cf-4322-a119-15019af8a3", bundle.getBundleId().getValue());

	BundleEntry entry = bundle.getEntries().get(0);
	assertEquals("http://fhir.healthintersections.com.au/open/DiagnosticReport/101", entry.getId().getValue());
	assertEquals("http://fhir.healthintersections.com.au/open/DiagnosticReport/101/_history/1", entry.getLinkSelf().getValue());
	assertEquals("2014-03-10T11:55:59Z", entry.getUpdated().getValueAsString());

	DiagnosticReport res = (DiagnosticReport) entry.getResource();
	assertEquals("Complete Blood Count", res.getName().getText().getValue());

	assertThat(entry.getSummary().getValueAsString(), containsString("CBC Report for Wile"));

}
 
开发者ID:gajen0981,项目名称:FHIR-Server,代码行数:31,代码来源:JsonParserTest.java

示例6: testJsonLikeParseBundle

import ca.uhn.fhir.model.api.BundleEntry; //导入方法依赖的package包/类
@Test
public void testJsonLikeParseBundle() throws DataFormatException, IOException {

	String msg = IOUtils.toString(XmlParser.class.getResourceAsStream("/atom-document-large.json"));

	IJsonLikeParser jsonLikeParser = (IJsonLikeParser)ourCtx.newJsonParser().setPrettyPrint(true);
	StringReader reader = new StringReader(msg);
	JsonLikeStructure jsonLikeStructure = new GsonStructure();
	jsonLikeStructure.load(reader);
	
	Bundle bundle = jsonLikeParser.parseBundle(jsonLikeStructure);
	
	assertEquals(1, bundle.getCategories().size());
	assertEquals("http://scheme", bundle.getCategories().get(0).getScheme());
	assertEquals("http://term", bundle.getCategories().get(0).getTerm());
	assertEquals("label", bundle.getCategories().get(0).getLabel());

	String encoded = ourCtx.newXmlParser().setPrettyPrint(true).encodeBundleToString(bundle);
	ourLog.info(encoded);

	assertEquals("http://fhir.healthintersections.com.au/open/DiagnosticReport/_search?_format=application/json+fhir&search-id=46d5f0e7-9240-4d4f-9f51-f8ac975c65&search-sort=_id",
			bundle.getLinkSelf().getValue());
	assertEquals("urn:uuid:0b754ff9-03cf-4322-a119-15019af8a3", bundle.getBundleId().getValue());

	BundleEntry entry = bundle.getEntries().get(0);
	assertEquals("http://fhir.healthintersections.com.au/open/DiagnosticReport/101", entry.getId().getValue());
	assertEquals("http://fhir.healthintersections.com.au/open/DiagnosticReport/101/_history/1", entry.getLinkSelf().getValue());
	assertEquals("2014-03-10T11:55:59Z", entry.getUpdated().getValueAsString());

	DiagnosticReport res = (DiagnosticReport) entry.getResource();
	assertEquals("Complete Blood Count", res.getName().getText().getValue());

	assertThat(entry.getSummary().getValueAsString(), containsString("CBC Report for Wile"));

}
 
开发者ID:jamesagnew,项目名称:hapi-fhir,代码行数:36,代码来源:JsonLikeParserTest.java

示例7: testParseBundle

import ca.uhn.fhir.model.api.BundleEntry; //导入方法依赖的package包/类
@Test
public void testParseBundle() throws DataFormatException, IOException {

	String msg = IOUtils.toString(XmlParser.class.getResourceAsStream("/atom-document-large.json"));
	IParser p = ourCtx.newJsonParser();
	Bundle bundle = p.parseBundle(msg);

	assertEquals(1, bundle.getCategories().size());
	assertEquals("http://scheme", bundle.getCategories().get(0).getScheme());
	assertEquals("http://term", bundle.getCategories().get(0).getTerm());
	assertEquals("label", bundle.getCategories().get(0).getLabel());

	String encoded = ourCtx.newXmlParser().setPrettyPrint(true).encodeBundleToString(bundle);
	ourLog.info(encoded);

	assertEquals("http://fhir.healthintersections.com.au/open/DiagnosticReport/_search?_format=application/json+fhir&search-id=46d5f0e7-9240-4d4f-9f51-f8ac975c65&search-sort=_id",
			bundle.getLinkSelf().getValue());
	assertEquals("urn:uuid:0b754ff9-03cf-4322-a119-15019af8a3", bundle.getBundleId().getValue());

	BundleEntry entry = bundle.getEntries().get(0);
	assertEquals("http://fhir.healthintersections.com.au/open/DiagnosticReport/101", entry.getId().getValue());
	assertEquals("http://fhir.healthintersections.com.au/open/DiagnosticReport/101/_history/1", entry.getLinkSelf().getValue());
	assertEquals("2014-03-10T11:55:59Z", entry.getUpdated().getValueAsString());

	DiagnosticReport res = (DiagnosticReport) entry.getResource();
	assertEquals("Complete Blood Count", res.getName().getText().getValue());

	assertThat(entry.getSummary().getValueAsString(), containsString("CBC Report for Wile"));

}
 
开发者ID:jamesagnew,项目名称:hapi-fhir,代码行数:31,代码来源:JsonParserTest.java

示例8: encodeBundleToWriterInDstu1Format

import ca.uhn.fhir.model.api.BundleEntry; //导入方法依赖的package包/类
private void encodeBundleToWriterInDstu1Format(Bundle theBundle, JsonGenerator eventWriter) throws IOException {
	eventWriter.writeStartObject();

	eventWriter.write("resourceType", "Bundle");

	writeTagWithTextNode(eventWriter, "title", theBundle.getTitle());
	writeTagWithTextNode(eventWriter, "id", theBundle.getBundleId());
	writeOptionalTagWithTextNode(eventWriter, "updated", theBundle.getUpdated());

	boolean linkStarted = false;
	linkStarted = writeAtomLinkInDstu1Format(eventWriter, "self", theBundle.getLinkSelf(), linkStarted);
	linkStarted = writeAtomLinkInDstu1Format(eventWriter, "first", theBundle.getLinkFirst(), linkStarted);
	linkStarted = writeAtomLinkInDstu1Format(eventWriter, "previous", theBundle.getLinkPrevious(), linkStarted);
	linkStarted = writeAtomLinkInDstu1Format(eventWriter, "next", theBundle.getLinkNext(), linkStarted);
	linkStarted = writeAtomLinkInDstu1Format(eventWriter, "last", theBundle.getLinkLast(), linkStarted);
	linkStarted = writeAtomLinkInDstu1Format(eventWriter, "fhir-base", theBundle.getLinkBase(), linkStarted);
	if (linkStarted) {
		eventWriter.writeEnd();
	}

	writeCategories(eventWriter, theBundle.getCategories());

	writeOptionalTagWithTextNode(eventWriter, "totalResults", theBundle.getTotalResults());

	writeAuthor(theBundle, eventWriter);

	eventWriter.writeStartArray("entry");
	for (BundleEntry nextEntry : theBundle.getEntries()) {
		eventWriter.writeStartObject();

		boolean deleted = nextEntry.getDeletedAt() != null && nextEntry.getDeletedAt().isEmpty() == false;
		if (deleted) {
			writeTagWithTextNode(eventWriter, "deleted", nextEntry.getDeletedAt());
		}
		writeTagWithTextNode(eventWriter, "title", nextEntry.getTitle());
		writeTagWithTextNode(eventWriter, "id", nextEntry.getId());

		linkStarted = false;
		linkStarted = writeAtomLinkInDstu1Format(eventWriter, "self", nextEntry.getLinkSelf(), linkStarted);
		linkStarted = writeAtomLinkInDstu1Format(eventWriter, "alternate", nextEntry.getLinkAlternate(), linkStarted);
		linkStarted = writeAtomLinkInDstu1Format(eventWriter, "search", nextEntry.getLinkSearch(), linkStarted);
		if (linkStarted) {
			eventWriter.writeEnd();
		}

		writeOptionalTagWithTextNode(eventWriter, "updated", nextEntry.getUpdated());
		writeOptionalTagWithTextNode(eventWriter, "published", nextEntry.getPublished());

		writeCategories(eventWriter, nextEntry.getCategories());

		writeAuthor(nextEntry, eventWriter);

		IResource resource = nextEntry.getResource();
		if (resource != null && !resource.isEmpty() && !deleted) {
			RuntimeResourceDefinition resDef = myContext.getResourceDefinition(resource);
			encodeResourceToJsonStreamWriter(resDef, resource, eventWriter, "content", false);
		}

		if (nextEntry.getSummary().isEmpty() == false) {
			eventWriter.write("summary", nextEntry.getSummary().getValueAsString());
		}

		eventWriter.writeEnd(); // entry object
	}
	eventWriter.writeEnd(); // entry array

	eventWriter.writeEnd();
}
 
开发者ID:gajen0981,项目名称:FHIR-Server,代码行数:69,代码来源:JsonParser.java

示例9: encodeBundleToWriterDstu2

import ca.uhn.fhir.model.api.BundleEntry; //导入方法依赖的package包/类
private void encodeBundleToWriterDstu2(Bundle theBundle, XMLStreamWriter theEventWriter) throws XMLStreamException {
	theEventWriter.writeStartElement("Bundle");
	theEventWriter.writeDefaultNamespace(FHIR_NS);

	writeOptionalTagWithValue(theEventWriter, "id", theBundle.getId().getIdPart());

	InstantDt updated = (InstantDt) theBundle.getResourceMetadata().get(ResourceMetadataKeyEnum.UPDATED);
	IdDt bundleId = theBundle.getId();
	if (bundleId != null && isNotBlank(bundleId.getVersionIdPart()) || (updated != null && !updated.isEmpty())) {
		theEventWriter.writeStartElement("meta");
		writeOptionalTagWithValue(theEventWriter, "versionId", bundleId.getVersionIdPart());
		if (updated != null) {
			writeOptionalTagWithValue(theEventWriter, "lastUpdated", updated.getValueAsString());
		}
		theEventWriter.writeEndElement();
	}

	String bundleBaseUrl = theBundle.getLinkBase().getValue();

	writeOptionalTagWithValue(theEventWriter, "type", theBundle.getType().getValue());
	writeOptionalTagWithValue(theEventWriter, "base", bundleBaseUrl);
	writeOptionalTagWithValue(theEventWriter, "total", theBundle.getTotalResults().getValueAsString());

	writeBundleResourceLink(theEventWriter, "first", theBundle.getLinkFirst());
	writeBundleResourceLink(theEventWriter, "previous", theBundle.getLinkPrevious());
	writeBundleResourceLink(theEventWriter, "next", theBundle.getLinkNext());
	writeBundleResourceLink(theEventWriter, "last", theBundle.getLinkLast());
	writeBundleResourceLink(theEventWriter, "self", theBundle.getLinkSelf());

	for (BundleEntry nextEntry : theBundle.getEntries()) {
		theEventWriter.writeStartElement("entry");

		boolean deleted = false;
		if (nextEntry.getDeletedAt() != null && nextEntry.getDeletedAt().isEmpty() == false) {
			deleted = true;
		}

		writeOptionalTagWithValue(theEventWriter, "base", determineResourceBaseUrl(bundleBaseUrl, nextEntry));

		IResource resource = nextEntry.getResource();
		if (resource != null && !resource.isEmpty() && !deleted) {
			theEventWriter.writeStartElement("resource");
			encodeResourceToXmlStreamWriter(resource, theEventWriter, false);
			theEventWriter.writeEndElement(); // content
		} else {
			ourLog.debug("Bundle entry contains null resource");
		}

		if (nextEntry.getSearchMode().isEmpty() == false || nextEntry.getScore().isEmpty() == false) {
			theEventWriter.writeStartElement("search");
			writeOptionalTagWithValue(theEventWriter, "mode", nextEntry.getSearchMode().getValueAsString());
			writeOptionalTagWithValue(theEventWriter, "score", nextEntry.getScore().getValueAsString());
			theEventWriter.writeEndElement();
			// IResource nextResource = nextEntry.getResource();
		}

		if (nextEntry.getTransactionMethod().isEmpty() == false || nextEntry.getLinkSearch().isEmpty() == false) {
			theEventWriter.writeStartElement("transaction");
			writeOptionalTagWithValue(theEventWriter, "method", nextEntry.getTransactionMethod().getValue());
			writeOptionalTagWithValue(theEventWriter, "url", nextEntry.getLinkSearch().getValue());
			theEventWriter.writeEndElement();
		}

		if (deleted) {
			theEventWriter.writeStartElement("deleted");
			writeOptionalTagWithValue(theEventWriter, "type", nextEntry.getId().getResourceType());
			writeOptionalTagWithValue(theEventWriter, "id", nextEntry.getId().getIdPart());
			writeOptionalTagWithValue(theEventWriter, "versionId", nextEntry.getId().getVersionIdPart());
			writeOptionalTagWithValue(theEventWriter, "instant", nextEntry.getDeletedAt().getValueAsString());
			theEventWriter.writeEndElement();
		}

		theEventWriter.writeEndElement(); // entry
	}

	theEventWriter.writeEndElement();
	theEventWriter.close();
}
 
开发者ID:gajen0981,项目名称:FHIR-Server,代码行数:79,代码来源:XmlParser.java

示例10: outgoingResponse

import ca.uhn.fhir.model.api.BundleEntry; //导入方法依赖的package包/类
/**
 * Intercept the outgoing response to perform auditing of the request data if the bundle contains auditable resources.
 */
@Override	
public boolean outgoingResponse(RequestDetails theRequestDetails, Bundle theResponseObject, HttpServletRequest theServletRequest, HttpServletResponse theServletResponse)
		throws AuthenticationException {
	if(myClientParamsOptional && myDataStore == null){
		//auditing is not required or configured, so do nothing here
		log.debug("No auditing configured.");
		return true;
	}
	if(theResponseObject == null || theResponseObject.isEmpty()){
		log.debug("No bundle to audit");
		return true;
	}
	try{
		log.info("Auditing bundle: " + theResponseObject + " from request " + theRequestDetails);
		SecurityEvent auditEvent = new SecurityEvent();	
		auditEvent.setEvent(getEventInfo(theRequestDetails));			
		//get user info from request if available			
		Participant participant = getParticipant(theServletRequest);
		if(participant == null){
			log.debug("No participant to audit");
			return true; //no user to audit - throws exception if client params are required
		}
		List<Participant> participants = new ArrayList<SecurityEvent.Participant>(1);
		participants.add(participant);
		auditEvent.setParticipant(participants);
		
		SecurityEventObjectLifecycleEnum lifecycle = mapResourceTypeToSecurityLifecycle(theRequestDetails.getResourceOperationType());			
		byte[] query = getQueryFromRequestDetails(theRequestDetails);
		List<ObjectElement> auditableObjects = new ArrayList<SecurityEvent.ObjectElement>();
		for(BundleEntry entry: theResponseObject.getEntries()){			
			IResource resource = entry.getResource();		
			ObjectElement auditableObject = getObjectElement(resource, lifecycle , query);
			if(auditableObject != null) auditableObjects.add(auditableObject);				
		}
		if(auditableObjects.isEmpty()){
			log.debug("No auditable resources to audit.");
			return true; //no PHI to audit
		}else{
			log.debug("Auditing " + auditableObjects.size() + " resources.");
		}
		auditEvent.setObject(auditableObjects);
		auditEvent.setSource(getSourceElement(theServletRequest));
		store(auditEvent);
		return true; //success
	}catch(Exception e){
		log.error("Unable to audit resource: " + theResponseObject + " from request: " + theRequestDetails, e);
		throw new InternalErrorException("Auditing failed, unable to complete request", e);
	}
}
 
开发者ID:gajen0981,项目名称:FHIR-Server,代码行数:53,代码来源:AuditingInterceptor.java

示例11: testParseBundleFromHI

import ca.uhn.fhir.model.api.BundleEntry; //导入方法依赖的package包/类
@Test
public void testParseBundleFromHI() throws DataFormatException, IOException {

	String msg = IOUtils.toString(XmlParser.class.getResourceAsStream("/bundle.json"));
	IParser p = ourCtx.newJsonParser();
	Bundle bundle = p.parseBundle(msg);

	String encoded = ourCtx.newXmlParser().setPrettyPrint(true).encodeBundleToString(bundle);
	ourLog.info(encoded);

	BundleEntry entry = bundle.getEntries().get(0);

	Patient res = (Patient) entry.getResource();
	assertEquals("444111234", res.getIdentifierFirstRep().getValue().getValue());

	BundleEntry deletedEntry = bundle.getEntries().get(3);
	assertEquals("2014-06-20T20:15:49Z", deletedEntry.getDeletedAt().getValueAsString());

}
 
开发者ID:gajen0981,项目名称:FHIR-Server,代码行数:20,代码来源:JsonParserTest.java

示例12: outgoingResponse

import ca.uhn.fhir.model.api.BundleEntry; //导入方法依赖的package包/类
/**
 * Intercept the outgoing response to perform auditing of the request data if the bundle contains auditable
 * resources.
 */
@Override
public boolean outgoingResponse(RequestDetails theRequestDetails, Bundle theResponseObject, HttpServletRequest theServletRequest, HttpServletResponse theServletResponse) throws AuthenticationException {
	if (myClientParamsOptional && myDataStore == null) {
		// auditing is not required or configured, so do nothing here
		log.debug("No auditing configured.");
		return true;
	}
	if (theResponseObject == null || theResponseObject.isEmpty()) {
		log.debug("No bundle to audit");
		return true;
	}
	try {
		log.info("Auditing bundle: " + theResponseObject + " from request " + theRequestDetails);
		SecurityEvent auditEvent = new SecurityEvent();
		auditEvent.setEvent(getEventInfo(theRequestDetails));
		// get user info from request if available
		Participant participant = getParticipant(theServletRequest);
		if (participant == null) {
			log.debug("No participant to audit");
			return true; // no user to audit - throws exception if client params are required
		}
		List<Participant> participants = new ArrayList<SecurityEvent.Participant>(1);
		participants.add(participant);
		auditEvent.setParticipant(participants);

		SecurityEventObjectLifecycleEnum lifecycle = mapResourceTypeToSecurityLifecycle(theRequestDetails.getRestOperationType());
		byte[] query = getQueryFromRequestDetails(theRequestDetails);
		List<ObjectElement> auditableObjects = new ArrayList<SecurityEvent.ObjectElement>();
		for (BundleEntry entry : theResponseObject.getEntries()) {
			IResource resource = entry.getResource();
			ObjectElement auditableObject = getObjectElement(resource, lifecycle, query);
			if (auditableObject != null)
				auditableObjects.add(auditableObject);
		}
		if (auditableObjects.isEmpty()) {
			log.debug("No auditable resources to audit.");
			return true; // no PHI to audit
		} else {
			log.debug("Auditing " + auditableObjects.size() + " resources.");
		}
		auditEvent.setObject(auditableObjects);
		auditEvent.setSource(getSourceElement(theServletRequest));
		store(auditEvent);
		return true; // success
	} catch (Exception e) {
		log.error("Unable to audit resource: " + theResponseObject + " from request: " + theRequestDetails, e);
		throw new InternalErrorException("Auditing failed, unable to complete request", e);
	}
}
 
开发者ID:jamesagnew,项目名称:hapi-fhir,代码行数:54,代码来源:AuditingInterceptor.java


注:本文中的ca.uhn.fhir.model.api.BundleEntry.getResource方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。