adding system-level operations

This commit is contained in:
Vassil Peytchev 2024-06-03 08:20:16 -05:00
parent ef984e26a9
commit 974ce280aa
1 changed files with 5 additions and 0 deletions

View File

@ -347,6 +347,11 @@ public class CapabilityStatementRenderer extends ResourceRenderer {
resCount++;
}
}
if (rest.getOperation().size() > 0) {
//TODO Figure out what should come out of this
x.h(nextLevel,"operationsCap" + Integer.toString(count)).addText(context.formatPhrase(RenderingContext.OP_DEF_NAME));
x.h(nextLevel+1,"operationsSummary" + Integer.toString(count)).addText(context.formatPhrase(RenderingContext.OP_DEF_USE));
}
count++;
}
}