View Javadoc
1   package org.openehealth.ipf.commons.ihe.fhir.translation;
2   
3   import java.util.Map;
4   
5   /**
6    * @author Christian Ohr
7    */
8   public interface ToFhirTranslator<T> {
9   
10      /**
11       * Translates something into a FHIR object
12       *
13       * @param input input data
14       * @return FHIR data
15       */
16      Object translateToFhir(T input, Map<String, Object> parameters);
17  }