All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hl7.fhir.utilities.MagicResources Maven / Gradle / Ivy

There is a newer version: 6.4.1
Show newest version
package org.hl7.fhir.utilities;

import java.io.IOException;
import java.io.InputStream;

public class MagicResources {

  public static byte[] spdxCodesAsData() throws IOException {
    ClassLoader classLoader = MagicResources.class.getClassLoader();
    InputStream help = classLoader.getResourceAsStream("spdx.json");
    return TextFile.streamToBytes(help);
  }
  
  
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy