| 18 | import java.util.List; |
| 19 | |
| 20 | @Data |
| 21 | @Builder |
| 22 | @NoArgsConstructor |
| 23 | @AllArgsConstructor |
| 24 | @Node("Skill") |
| 25 | public class SkillNode { |
| 26 | |
| 27 | @Id |
| 28 | private String name; |
| 29 | |
| 30 | @Property("level") |
| 31 | private Integer level; |
| 32 | |
| 33 | @Property("description") |
| 34 | private String description; |
| 35 | |
| 36 | @Property("keywords") |
| 37 | private List<String> keywords; |
| 38 | |
| 39 | @Relationship(type = "REQUIRES", direction = Relationship.Direction.OUTGOING) |
| 40 | private List<SkillNode> requires; |
| 41 | |
| 42 | @Relationship(type = "RELATED_TO", direction = Relationship.Direction.OUTGOING) |
| 43 | private List<SkillNode> relatedTo; |
| 44 | } |
| 45 | |
| 46 |
nothing calls this directly
no outgoing calls
no test coverage detected