* @throws IOException - Couldn't access package descriptor
*/
public HashMap<String, Object> getPackageDetails(String packageName, String packageVersion) {
// Verify package existence retrieving details
if (!packageVersionExists(packageName, packageVersion)) {
throw new MissingResourceException("Unable to find package version details with that identifier.");
}
HashMap<String, Object> packageMetaData = null;
try {