-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Korriger modul LoggingOgSporing (bytt arv endringslogg/hendelseslogg)
En endring bør være en underklasse av hendelse, da en endring er en hendelse men alle hendelser ikke er endringer. Dette fjerner behovet for redundant datofelt (endretDato/M683 og hendelseDato), samt behovet for å introdusere en ny metadatatype for hendelseDato. Endre beskrivelse av relasjon tilbake til endret entitet i endringslogg, da relasjonsnøkkel basert på entitetens type vil gi relasjonsnøkkelkonflikt ved endring av brukerentiteter, og introduser ny relasjonsnøkkel for arkivenhet for å unngå konflikten.
- Loading branch information
1 parent
7d4d548
commit bc45507
Showing
8 changed files
with
65 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
@startuml | ||
class LoggingOgSporing.Hendelseslogg <Endringslogg> { | ||
class LoggingOgSporing.Hendelseslogg { | ||
+hendelsetype : Hendelsetype | ||
+beskrivelse : string [0..1] | ||
+hendelseDato : datetime [0..1] [1..1] | ||
+endretDato : datetime [0..1] [1..1] | ||
} | ||
@enduml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
@startuml | ||
skinparam nodesep 100 | ||
hide circle | ||
class LoggingOgSporing.Hendelseslogg <Endringslogg> { | ||
class LoggingOgSporing.Hendelseslogg { | ||
+hendelsetype : Hendelsetype | ||
+beskrivelse : string [0..1] | ||
+hendelseDato : datetime [0..1] [1..1] | ||
+endretDato : datetime [0..1] [1..1] | ||
} | ||
class LoggingOgSporing.Endringslogg { | ||
} | ||
LoggingOgSporing.Endringslogg <|-- LoggingOgSporing.Hendelseslogg | ||
LoggingOgSporing.Hendelseslogg <|-- LoggingOgSporing.Endringslogg | ||
@enduml |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters