class RDFxRestWSBaseFormat in RDF Extensions 7.2
A base formatter for all RDF serialization formats.
Hierarchy
- class \RDFxRestWSBaseFormat extends \RestWSBaseFormat
Expanded class hierarchy of RDFxRestWSBaseFormat
File
- ./
rdfx.restws.formats.inc, line 6
View source
class RDFxRestWSBaseFormat extends RestWSBaseFormat {
/**
* Read only support.
*/
public function createResource($resourceController, $data) {
throw new RestWSException('Not implemented', 501);
}
public function updateResource($resourceController, $id, $data) {
throw new RestWSException('Not implemented', 501);
}
public function deleteResource($resourceController, $id) {
throw new RestWSException('Not implemented', 501);
}
}
Members
Name![]() |
Modifiers | Type | Description | Overrides |
---|---|---|---|---|
RDFxRestWSBaseFormat:: |
public | function | Read only support. | |
RDFxRestWSBaseFormat:: |
public | function | ||
RDFxRestWSBaseFormat:: |
public | function |