コード例 #1
0
  protected static void parseContentLocation(
      FhirContext theContext, MethodOutcome theOutcomeToPopulate, String theLocationHeader) {
    if (StringUtils.isBlank(theLocationHeader)) {
      return;
    }

    IIdType id = theContext.getVersion().newIdType();
    id.setValue(theLocationHeader);
    theOutcomeToPopulate.setId(id);
  }