Skip to content

Instantly share code, notes, and snippets.

@varpa89
Last active November 25, 2016 08:20
Show Gist options
  • Save varpa89/f996c48b808a76473c9cd297776c57bb to your computer and use it in GitHub Desktop.
Save varpa89/f996c48b808a76473c9cd297776c57bb to your computer and use it in GitHub Desktop.
@NamedEntityGraphs({
@NamedEntityGraph(
name = "OdoPetition.xls",
attributeNodes = {
@NamedAttributeNode("document"),
@NamedAttributeNode("organization"),
@NamedAttributeNode(value = "studyProgram", subgraph = "OdoPetition.studyProgram.xls")
},
subgraphs = {
@NamedSubgraph(name = "OdoPetition.studyProgram.xls",
type = StudyProgram.class,
attributeNodes = @NamedAttributeNode("department")
)
}
)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment