public String getPolicyName(String policy) throws MelcoePDPException {
Map<String, String> metadata;
try {
metadata = getDocumentMetadata(policy.getBytes("UTF-8"));
} catch (IOException e) {
throw new MelcoePDPException(e.getMessage(), e);
}
return metadata.get("PolicyId");
}