Skip to content
This repository has been archived by the owner on Mar 12, 2020. It is now read-only.

Commit

Permalink
Correct relationship direction #19
Browse files Browse the repository at this point in the history
  • Loading branch information
tdauth committed Apr 16, 2019
1 parent a0d14d4 commit 43f2fa6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ class SutStateEntity(@Property(name = SutStateEntity.PropertyNameHash)
@Property(name = SutStateEntity.PropertyMessage)
var message: String = msg

@Relationship(`type` = "ACTIONS", direction = Relationship.OUTGOING) var incomingActionTransitions = new java.util.ArrayList[ActionTransitionEntity]()
@Relationship(`type` = "ACTIONS", direction = Relationship.INCOMING) var outgoingActionTransitions = new java.util.ArrayList[ActionTransitionEntity]()
@Relationship(`type` = "ACTIONS", direction = Relationship.INCOMING) var incomingActionTransitions = new java.util.ArrayList[ActionTransitionEntity]()
@Relationship(`type` = "ACTIONS", direction = Relationship.OUTGOING) var outgoingActionTransitions = new java.util.ArrayList[ActionTransitionEntity]()
}

object SutStateEntity {
Expand Down

0 comments on commit 43f2fa6

Please sign in to comment.