public static Map<String, Object> getBundleInfo(Long bundleId) throws IOException {
   cli.sendLine(
       "/subsystem=osgi/bundle="
           + bundleId
           + ":read-resource(include-runtime=true,recursive=true)");
   CLIOpResult cliresult = cli.readAllAsOpResult(WAIT_TIMEOUT, WAIT_LINETIMEOUT);
   return cliresult.getResultAsMap();
 }