//////////////////////////////////////////////////////////////////////////////// /// @brief module "actions" /// /// @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 JSModuleActionsTOC /// ///
    ///
  1. @ref JSModuleActionsBasics ///
      ///
    1. @ref JSModuleActionsDefineHttp "actions.defineHttp"
    2. ///
    3. @ref JSModuleActionsResultError "actions.resultError"
    4. ///
    5. @ref JSModuleActionsGetErrorMessage "actions.getErrorMessage"
    6. ///
    ///
  2. ///
  3. @ref JSModuleActionsHTTP ///
      ///
    1. @ref JSModuleActionsResultOk "actions.resultOK"
    2. ///
    3. @ref JSModuleActionsResultBad "actions.resultBad"
    4. ///
    5. @ref JSModuleActionsResultNotFound "actions.resultNotFound"
    6. ///
    7. @ref JSModuleActionsResultUnsupported "actions.resultUnsupported"
    8. ///
    ///
  4. ///
  5. @ref JSModuleActionsAvocadoDB ///
      ///
    1. @ref JSModuleActionsCollectionNotFound "actions.collectionNotFound"
    2. ///
    3. @ref JSModuleActionsIndexNotFound "actions.indexNotFound"
    4. ///
    5. @ref JSModuleActionsResultException "actions.resultException"
    6. ///
    ///
  6. ///
//////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// /// @page JSModuleActions Module "actions" /// /// The action module provides the infrastructure for defining HTTP actions. /// ///
/// @copydoc JSModuleActionsTOC ///
/// /// @section JSModuleActionsBasics Basics ///////////////////////////////////////// /// /// @anchor JSModuleActionsDefineHttp /// @copydetails JSF_DefineHttp ///
/// /// @anchor JSModuleActionsResultError /// @copydetails JSF_ResultError ///
/// /// @anchor JSModuleActionsGetErrorMessage /// @copydetails JSF_GetErrorMessage ///
/// /// @section JSModuleActionsHTTP Standard HTTP Result Generators //////////////////////////////////////////////////////////////// /// /// @anchor JSModuleActionsResultOk /// @copydetails JSF_ResultOk ///
/// /// @anchor JSModuleActionsResultBad /// @copydetails JSF_ResultBad ///
/// /// @anchor JSModuleActionsResultNotFound /// @copydetails JSF_ResultNotFound ///
/// /// @anchor JSModuleActionsResultUnsupported /// @copydetails JSF_ResultUnsupported ///
/// /// @section JSModuleActionsAvocadoDB AvocadoDB Result Generators ///////////////////////////////////////////////////////////////// /// /// @anchor JSModuleActionsCollectionNotFound /// @copydetails JSF_CollectionNotFound ///
/// /// @anchor JSModuleActionsIndexNotFound /// @copydetails JSF_IndexNotFound ///
/// /// @anchor JSModuleActionsResultException /// @copydetails JSF_ResultException //////////////////////////////////////////////////////////////////////////////// // Local Variables: // mode: outline-minor // outline-regexp: "^\\(/// @brief\\|/// {@inheritDoc}\\|/// @addtogroup\\|// --SECTION--\\|/// @page\\|/// @\\}\\)" // End: