Path: / {BASE} / context

Indirect context identification, listing in case 'graph' is missing


Resources
NameDescription
list
{uuid}Returns the content stored on this context

Method Summary
ResourceDescription
GET /{BASE}/context?graph=…&format=…Indirect context identification, listing in case 'graph' is missing
PUT /{BASE}/context?graph=… 
PUT /{BASE}/context 
DELETE /{BASE}/context?graph=… 

Method Detail
HTTP Example:
GET /{BASE}/context?graph=…&format=…
Accept: …

API Example:

ContextWebService.get({'graph': /* context uri */,
  'format': /* Indirect context identification, listing in case 'graph' is missing */,
  'Accept': /* Indirect context identification, listing in case 'graph' is missing */});

Indirect context identification, listing in case 'graph' is missing

Output:
javax.ws.rs.core.Response - response
Query parameters:
graph - uri
format
Header parameters:
Accept
HTTP Example:
PUT /{BASE}/context?graph=…
Content-Type: …

API Example:

ContextWebService.put({'graph': …,
  'Content-Type': …});

Output:
javax.ws.rs.core.Response
Query parameters:
graph
Header parameters:
Content-Type
HTTP Example:
PUT /{BASE}/context
Content-Type: …

API Example:

ContextWebService.putContext({'uuid': …,
  'Content-Type': …});

Output:
javax.ws.rs.core.Response
Header parameters:
Content-Type
HTTP Example:
DELETE /{BASE}/context?graph=…

API Example:

ContextWebService.delete({'graph': …});

Output:
javax.ws.rs.core.Response
Query parameters:
graph