我有服裝資源的問題。我正在做一個寧靜的服務器來訪問來自外部數據庫的臨牀信息,並且我有一個自定義資源:MyAppointment,帶有一個自定義屬性。 我的問題是,當客戶使用我的web服務,需要在客戶端有一個班在他的代碼相同,只是我對MyAppointment.class做到這一點:自定義資源哈皮FHIR
// Create a client (only needed once)
FhirContext ctx = new FhirContext();
IGenericClient client = ctx.newRestfulGenericClient("http://localhost:8080/restful-server-example/fhir");
// Invoke the client
Bundle bundle = client.search().forResource(Appointment.class)
.where(new StringClientParam("patient").matches().value("1232"))
.where(new StringClientParam("fechaDesde").matches().value("2"))
.where(new StringClientParam("fechaHasta").matches().value("2"))
.execute();
**MyAppointment** appo= (**MyAppointment**) bundle.getEntry().get(0).getResource();
如果沒有,如何可以在客戶端得到德自定義資源?
謝謝
好吧,我會用未申報的擴展與FHIR約會等等。謝謝! –