Changeset 02d288d in flexoentity for flexoentity/domain.py


Ignore:
Timestamp:
10/23/25 13:27:08 (3 months ago)
Author:
Enrico Schwass <ennoausberlin@…>
Branches:
master
Children:
4ceca57
Parents:
6a7dec1
Message:

improve hash generation and collision handler - move signature from FlexOID to FlexoEntity

File:
1 edited

Legend:

Unmodified
Added
Removed
  • flexoentity/domain.py

    r6a7dec1 r02d288d  
    1414
    1515    def __post_init__(self):
    16         self.etype = EntityType.DOMAIN
    1716        super().__post_init__()
    1817
     
    2019    def text_seed(self) -> str:
    2120        """Deterministic text seed for ID generation."""
    22         return f"{self.domain}|{self.fullname}|{self.classification}|{self.owner}"
     21        return f"{self.fullname}|{self.classification}|{self.owner}"
    2322
    2423    def to_dict(self):
Note: See TracChangeset for help on using the changeset viewer.