mirror of https://gitee.com/bigwinds/arangodb
129 lines
4.6 KiB
Plaintext
129 lines
4.6 KiB
Plaintext
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief API implementor manual
|
|
///
|
|
/// @file
|
|
///
|
|
/// DISCLAIMER
|
|
///
|
|
/// Copyright 2012 triagens GmbH, Cologne, Germany
|
|
///
|
|
/// Licensed under the Apache License, Version 2.0 (the "License");
|
|
/// you may not use this file except in compliance with the License.
|
|
/// You may obtain a copy of the License at
|
|
///
|
|
/// http://www.apache.org/licenses/LICENSE-2.0
|
|
///
|
|
/// Unless required by applicable law or agreed to in writing, software
|
|
/// distributed under the License is distributed on an "AS IS" BASIS,
|
|
/// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
/// See the License for the specific language governing permissions and
|
|
/// limitations under the License.
|
|
///
|
|
/// Copyright holder is triAGENS GmbH, Cologne, Germany
|
|
///
|
|
/// @author Dr. Frank Celler
|
|
/// @author Copyright 2012, triAGENS GmbH, Cologne, Germany
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @page ImplementorManual ArangoDB for API Implementors (@VERSION)
|
|
///
|
|
/// @NAVIGATE{InstallManual,Home,RefManual}
|
|
///
|
|
/// @if LATEX
|
|
/// <ul>
|
|
/// <li>@ref RestDocument</li>
|
|
/// <li>@ref RestEdge</li>
|
|
/// <li>@ref HttpCursor</li>
|
|
/// <li>@ref HttpSimple</li>
|
|
/// <li>@ref IndexCapHttp</li>
|
|
/// <li>@ref IndexGeoHttp</li>
|
|
/// <li>@ref IndexHashHttp</li>
|
|
/// <li>@ref IndexSkiplistHttp</li>
|
|
/// <li>@ref HttpCollection</li>
|
|
/// <li>@ref HttpIndex</li>
|
|
/// <li>@ref HttpSystem</li>
|
|
/// <li>@ref HttpMisc</li>
|
|
/// <li>@ref HttpBatch</li>
|
|
/// <li>@ref HttpImport</li>
|
|
/// <li>@ref Communication</li>
|
|
/// <li>@ref NamingConventions</li>
|
|
/// <li>@ref ArangoErrors</li>
|
|
/// <li>@ref Glossary</li>
|
|
/// </ul>
|
|
/// @else
|
|
/// <ul>
|
|
/// <li>REST Interface
|
|
/// @copydetails RestDocumentTOC
|
|
/// @copydetails RestEdgeTOC
|
|
/// </li>
|
|
/// <li>Light-Weight HTTP for Queries and Cursors
|
|
/// @copydetails HttpCursorTOC
|
|
/// @copydetails HttpQueryTOC
|
|
/// @copydetails HttpSimpleTOC
|
|
/// @copydetails IndexCapHttpTOC
|
|
/// @copydetails IndexGeoHttpTOC
|
|
/// @copydetails IndexHashHttpTOC
|
|
/// @copydetails IndexSkiplistHttpTOC
|
|
/// </li>
|
|
/// <li>Light-Weight HTTP for Administration
|
|
/// @copydetails HttpCollectionTOC
|
|
/// @copydetails HttpIndexTOC
|
|
/// @copydetails HttpSystemTOC
|
|
/// @copydetails HttpMiscTOC
|
|
/// </li>
|
|
/// <li>Interface for bulk imports
|
|
/// @copydetails HttpImportTOC
|
|
/// </li>
|
|
/// <li>Interface for batch operations
|
|
/// @copydetails HttpBatchTOC
|
|
/// </li>
|
|
/// <li>Advanced Topics
|
|
/// <ul>
|
|
/// <li>@ref Communication</li>
|
|
/// <li>@ref NamingConventions</li>
|
|
/// <li>@ref ArangoErrors</li>
|
|
/// </ul>
|
|
/// </li>
|
|
/// <li>Under Construction
|
|
/// <ul>
|
|
/// <li>@ref Key-Value
|
|
/// <ul>
|
|
/// <li>@ref Key-ValuePost "POST /_api/key/collection-name/key"</li>
|
|
/// <li>@ref Key-ValuePut "PUT /_api/key/collection-name/key"</li>
|
|
/// <li>@ref Key-ValueGet "GET /_api/key/collection-name/key"</li>
|
|
/// <li>@ref Key-ValueDelete "DELETE /_api/key/collection-name/key"</li>
|
|
/// <li>@ref Key-ValueSearch "GET /_api/keys/collection-name/prefix"</li>
|
|
/// </ul>
|
|
/// </li>
|
|
/// </ul>
|
|
/// <ul>
|
|
/// <li>@ref HttpBlueprints
|
|
/// <ul>
|
|
/// <li>@ref A_JSF_POST_blueprints_graph "POST /_api/blueprints/graph"</li>
|
|
/// <li>@ref A_JSF_GET_blueprints_graph "GET /_api/blueprints/graph"</li>
|
|
/// <li>@ref A_JSF_DELETE_blueprints_graph "DELETE /_api/blueprints/graph"</li>
|
|
/// <li>@ref A_JSF_POST_blueprints_vertex "POST /_api/blueprints/vertex"</li>
|
|
/// <li>@ref A_JSF_GET_blueprints_vertex "GET /_api/blueprints/vertex"</li>
|
|
/// <li>@ref A_JSF_PUT_blueprints_vertex "PUT /_api/blueprints/vertex"</li>
|
|
/// <li>@ref A_JSF_DELETE_blueprints_vertex "DELETE /_api/blueprints/vertex"</li>
|
|
/// <li>@ref A_JSF_POST_blueprints_vertices "POST /_api/blueprints/vertices"</li>
|
|
/// <li>@ref A_JSF_POST_blueprints_edge "POST /_api/blueprints/edge"</li>
|
|
/// <li>@ref A_JSF_GET_blueprints_edge "GET /_api/blueprints/edge"</li>
|
|
/// <li>@ref A_JSF_PUT_blueprints_edge "PUT /_api/blueprints/edge"</li>
|
|
/// <li>@ref A_JSF_DELETE_blueprints_edge "DELETE /_api/blueprints/edge"</li>
|
|
/// <li>@ref A_JSF_POST_blueprints_edges "POST /_api/blueprints/edges"</li>
|
|
/// </ul>
|
|
/// </li>
|
|
/// </ul>
|
|
/// </li>
|
|
/// </ul>
|
|
/// @endif
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Local Variables:
|
|
// mode: c++
|
|
// mode: outline-minor
|
|
// outline-regexp: "^\\(/// @brief\\|/// {@inheritDoc}\\|/// @addtogroup\\|// --SECTION--\\|/// @page\\|/// @\\}\\)"
|
|
// End:
|