Stored, sent and received data assets are always processed #18
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi,
thank you very much for your great work on this project, I hope it is still active and open for pull requests.
Rationale
Whenever data assets are stored, sent or received by a technical asset they are also processed in some way by that technical asset. This leads to tight coupling of
data_assets_processed
withdata_assets_stored
,data_assets_sent
anddata_assets_received
(relating to both, outgoing and incoming communication links). IMHOdata_assets_processed
is of almost no practical use, when a data asset processed is not stored and not transferred somewhere.Proposal
Infer
data_assets_processed
based on data assets stored and data assets used in outgoing and incoming communication links and do not requiredata_assets_processed
to be set and continuously maintained.As a stored data asset always implies a processed data asset some of the code became redundant and was removed.
I look forward to your feedback!