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


Java Patient.SP_NAME属性代码示例

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


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

示例1: findPatient

@Search
public List<Patient> findPatient(@RequiredParam(name = Patient.SP_NAME) StringDt theName, @IncludeParam(allow = { "foo", "bar" }) Set<Include> theIncludes) {
	ArrayList<Patient> retVal = new ArrayList<Patient>();

	Patient p = new Patient();
	p.addIdentifier().setSystem("foo").setValue("bar");

	p.setId(theName.getValue());

	if (theIncludes != null) {
		for (Include next : theIncludes) {
			p.addName().addFamily().setValue(next.getValue());
		}
	}
	retVal.add(p);

	return retVal;
}
 
开发者ID:gajen0981,项目名称:FHIR-Server,代码行数:18,代码来源:IncludeDstu2Test.java

示例2: searchForPatients

/**
 * This method is a Patient search, but HAPI can not automatically
 * determine the resource type so it must be explicitly stated.
 */
@Search(type=Patient.class)
public Bundle searchForPatients(@RequiredParam(name=Patient.SP_NAME) StringDt theName) {
  Bundle retVal = new Bundle();
  // perform search
  return retVal;
}
 
开发者ID:gajen0981,项目名称:FHIR-Server,代码行数:10,代码来源:ExampleProviders.java

示例3: findPatient

@Search(type = Patient.class)
public Patient findPatient(
		@Description(shortDefinition = "The patient's identifier") 
		@OptionalParam(name = Patient.SP_IDENTIFIER) IdentifierDt theIdentifier,
		@Description(shortDefinition = "The patient's name") 
		@OptionalParam(name=Patient.SP_NAME) StringDt theName) {
	return null;
}
 
开发者ID:gajen0981,项目名称:FHIR-Server,代码行数:8,代码来源:ServerConformanceProviderDstu2Test.java


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