Get a list of the full URIs for the properties of a resource.
This method will return an empty array if the resource has no properties.
array Array of full URIs
public function propertyUris($resource) {
$this
->checkResourceParam($resource);
if (isset($this->index[$resource])) {
return array_keys($this->index[$resource]);
}
else {
return array();
}
}