You are here

class RDFxRestWSBaseFormat in RDF Extensions 7.2

A base formatter for all RDF serialization formats.

Hierarchy

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