Update project maturity status
[multicloud/azure.git] / azure / aria / aria-extension-cloudify / src / aria / extensions / aria_extension_tosca / simple_v1_0 / presentation / extensible.py
1 # Licensed to the Apache Software Foundation (ASF) under one or more
2 # contributor license agreements.  See the NOTICE file distributed with
3 # this work for additional information regarding copyright ownership.
4 # The ASF licenses this file to You under the Apache License, Version 2.0
5 # (the "License"); you may not use this file except in compliance with
6 # the License.  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 from aria.utils.caching import cachedmethod
17 from aria.parser.presentation import (Presentation, has_fields, primitive_dict_field)
18
19
20 @has_fields
21 class ExtensiblePresentation(Presentation):
22     """
23     A presentation that supports an optional ``_extensions`` dict field.
24     """
25
26     @primitive_dict_field()
27     def _extensions(self):
28         pass
29
30     @cachedmethod
31     def _get_extension(self, name, default=None):
32         extensions = self._extensions
33         return extensions.get(name, default) if extensions is not None else None # pylint: disable=no-member