/src/common/request/RequestTaker.cpp

https://gitlab.com/admin-github-cloud/cynara · C++ · 121 lines · 76 code · 22 blank · 23 comment · 0 complexity · add3185c3942d088b907c4a260f918fd MD5 · raw file

  1. /*
  2. * Copyright (c) 2014-2016 Samsung Electronics Co., Ltd All Rights Reserved
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. /**
  17. * @file src/common/request/RequestTaker.cpp
  18. * @author Lukasz Wojciechowski <l.wojciechow@partner.samsung.com>
  19. * @author Adam Malinowski <a.malinowsk2@partner.samsung.com>
  20. * @author Zofia Abramowska <z.abramowska@samsung.com>
  21. * @version 1.0
  22. * @brief This file implements RequestTaker class
  23. */
  24. #include <attributes/attributes.h>
  25. #include <exceptions/NotImplementedException.h>
  26. #include "RequestTaker.h"
  27. namespace Cynara {
  28. void RequestTaker::execute(const RequestContext &context UNUSED,
  29. const AdminCheckRequest &request UNUSED) {
  30. throw NotImplementedException();
  31. }
  32. void RequestTaker::execute(const RequestContext &context UNUSED,
  33. const AgentActionRequest &request UNUSED) {
  34. throw NotImplementedException();
  35. }
  36. void RequestTaker::execute(const RequestContext &context UNUSED,
  37. const AgentRegisterRequest &request UNUSED) {
  38. throw NotImplementedException();
  39. }
  40. void RequestTaker::execute(const RequestContext &context UNUSED,
  41. const CancelRequest &request UNUSED) {
  42. throw NotImplementedException();
  43. }
  44. void RequestTaker::execute(const RequestContext &context UNUSED,
  45. const CheckRequest &request UNUSED) {
  46. throw NotImplementedException();
  47. }
  48. void RequestTaker::execute(const RequestContext &context UNUSED,
  49. const EraseRequest &request UNUSED) {
  50. throw NotImplementedException();
  51. }
  52. void RequestTaker::execute(const RequestContext &context UNUSED,
  53. const DescriptionListRequest &request UNUSED) {
  54. throw NotImplementedException();
  55. }
  56. void RequestTaker::execute(const RequestContext &context UNUSED,
  57. const InsertOrUpdateBucketRequest &request UNUSED) {
  58. throw NotImplementedException();
  59. }
  60. void RequestTaker::execute(const RequestContext &context UNUSED,
  61. const ListRequest &request UNUSED) {
  62. throw NotImplementedException();
  63. }
  64. void RequestTaker::execute(const RequestContext &context UNUSED,
  65. const MonitorGetEntriesRequest &request UNUSED) {
  66. throw NotImplementedException();
  67. }
  68. void RequestTaker::execute(const RequestContext &context UNUSED,
  69. const MonitorGetFlushRequest &request UNUSED) {
  70. throw NotImplementedException();
  71. }
  72. void RequestTaker::execute(const RequestContext &context UNUSED,
  73. const MonitorEntriesPutRequest &request UNUSED) {
  74. throw NotImplementedException();
  75. }
  76. void RequestTaker::execute(const RequestContext &context UNUSED,
  77. const MonitorEntryPutRequest &request UNUSED) {
  78. throw NotImplementedException();
  79. }
  80. void RequestTaker::execute(const RequestContext &context UNUSED,
  81. const RemoveBucketRequest &request UNUSED) {
  82. throw NotImplementedException();
  83. }
  84. void RequestTaker::execute(const RequestContext &context UNUSED,
  85. const SetPoliciesRequest &request UNUSED) {
  86. throw NotImplementedException();
  87. }
  88. void RequestTaker::execute(const RequestContext &context UNUSED,
  89. const SignalRequest &request UNUSED) {
  90. throw NotImplementedException();
  91. }
  92. void RequestTaker::execute(const RequestContext &context UNUSED,
  93. const SimpleCheckRequest &request UNUSED) {
  94. throw NotImplementedException();
  95. }
  96. void RequestTaker::contextClosed(const RequestContext &context UNUSED) {
  97. throw NotImplementedException();
  98. }
  99. } // namespace Cynara