1 | <?php |
||
23 | class ActivityProfileApiClient extends DocumentApiClient implements ActivityProfileApiClientInterface |
||
24 | { |
||
25 | /** |
||
26 | * {@inheritDoc} |
||
27 | */ |
||
28 | public function createOrUpdateDocument(ActivityProfileDocument $document) |
||
32 | |||
33 | /** |
||
34 | * {@inheritDoc} |
||
35 | */ |
||
36 | public function createOrReplaceDocument(ActivityProfileDocument $document) |
||
40 | |||
41 | /** |
||
42 | * {@inheritDoc} |
||
43 | */ |
||
44 | public function deleteDocument(ActivityProfile $profile) |
||
51 | |||
52 | /** |
||
53 | * {@inheritDoc} |
||
54 | */ |
||
55 | public function getDocument(ActivityProfile $profile) |
||
65 | |||
66 | /** |
||
67 | * Stores a state document. |
||
68 | * |
||
69 | * @param string $method HTTP method to use |
||
70 | * @param ActivityProfileDocument $document The document to store |
||
71 | */ |
||
72 | private function doStoreActivityProfileDocument($method, ActivityProfileDocument $document) |
||
85 | } |
||
86 |