Skip to content
Snippets Groups Projects
PolicyRuleModel.py 1.1 KiB
Newer Older
# Copyright 2021-2023 H2020 TeraFlow (https://www.teraflow-h2020.eu/)
#
# 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.

import logging
import json
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
from typing import Dict
from common.orm.fields.PrimaryKeyField import PrimaryKeyField
from common.orm.fields.StringField import StringField
from common.orm.model.Model import Model

LOGGER = logging.getLogger(__name__)

class PolicyRuleModel(Model):
    pk = PrimaryKeyField()
    value = StringField(required=True, allow_empty=False)

    def dump_id(self) -> Dict:
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
        return {'uuid': {'uuid': self.pk}}

    def dump(self) -> Dict:
        return json.loads(self.value)