Skip to content

Commit

Permalink
debug: experimental getPath on OrganisationUnit
Browse files Browse the repository at this point in the history
Signed-off-by: Morrten Svanaes <[email protected]>
  • Loading branch information
netroms committed Nov 20, 2024
1 parent dfd7f48 commit 0b13c92
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -711,6 +711,10 @@ public void setChildren(Set<OrganisationUnit> children) {
@JsonProperty
@JacksonXmlProperty(namespace = DxfNamespaces.DXF_2_0)
public String getPath() {
if (path != null) {
return path;
}

List<String> pathList = new ArrayList<>();
Set<String> visitedSet = new HashSet<>();
OrganisationUnit unit = parent;
Expand Down

0 comments on commit 0b13c92

Please sign in to comment.