__init__.py 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # SPDX-License-Identifier: Apache-2.0
  2. # Copyright 2020 Contributors to OpenLEADR
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. # http://www.apache.org/licenses/LICENSE-2.0
  7. # Unless required by applicable law or agreed to in writing, software
  8. # distributed under the License is distributed on an "AS IS" BASIS,
  9. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. # See the License for the specific language governing permissions and
  11. # limitations under the License.
  12. def handler(message_type):
  13. """
  14. Decorator to mark a method as the handler for a specific message type.
  15. """
  16. def _actual_decorator(decorated_function):
  17. decorated_function.__message_type__ = message_type
  18. return decorated_function
  19. return _actual_decorator
  20. def service(service_name):
  21. """
  22. Decorator to mark a class as an OpenADR Service for a specific endpoint.
  23. """
  24. def _actual_decorator(decorated_function):
  25. decorated_function.__service_name__ = service_name
  26. return decorated_function
  27. return _actual_decorator
  28. # The classes below all register to the api
  29. from .vtn_service import VTNService
  30. from .event_service import EventService
  31. from .poll_service import PollService
  32. from .registration_service import RegistrationService
  33. from .report_service import ReportService
  34. from .opt_service import OptService