MCPcopy Create free account
hub / github.com/LQF-dev/smart-hr / SkillNode

Class SkillNode

back/src/main/java/com/smarthr/service/graph/SkillNode.java:20–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18import java.util.List;
19
20@Data
21@Builder
22@NoArgsConstructor
23@AllArgsConstructor
24@Node("Skill")
25public 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected