/**
  * Get an attribute from the manifest of a bundle.
  *
  * @param key Name of attribute to get.
  * @return A string with result or null if the entry doesn't exists.
  */
 public String getAttribute(String key) {
   return archive.getAttribute(key);
 }