Get a list of the full URIs for the properties that point to a resource.
array Array of full property URIs
public function reversePropertyUris($resource) {
$this
->checkResourceParam($resource);
if (isset($this->revIndex[$resource])) {
return array_keys($this->revIndex[$resource]);
}
else {
return array();
}
}