[Minor] Made fields protected in GenericReport

This commit is contained in:
Robert von Burg 2021-12-06 14:12:51 +01:00
parent 6e3218540b
commit 010128cbc5
1 changed files with 2 additions and 2 deletions

View File

@ -873,7 +873,7 @@ public class GenericReport extends ReportPolicy {
&& this.reportRes.getParameterBag(BAG_ADDITIONAL_JOINS).hasParameter(type)); && this.reportRes.getParameterBag(BAG_ADDITIONAL_JOINS).hasParameter(type));
} }
private Stream<? extends StrolchRootElement> getStreamFor(StringParameter objectTypeP) { protected Stream<? extends StrolchRootElement> getStreamFor(StringParameter objectTypeP) {
switch (objectTypeP.getInterpretation()) { switch (objectTypeP.getInterpretation()) {
case INTERPRETATION_RESOURCE_REF: case INTERPRETATION_RESOURCE_REF:
return tx().streamResources(objectTypeP.getUom()); return tx().streamResources(objectTypeP.getUom());
@ -912,7 +912,7 @@ public class GenericReport extends ReportPolicy {
return refs; return refs;
} }
private void handleJoins(Map<String, StrolchRootElement> refs, String joinBagId) { protected void handleJoins(Map<String, StrolchRootElement> refs, String joinBagId) {
ParameterBag joinBag = this.reportRes.getParameterBag(joinBagId); ParameterBag joinBag = this.reportRes.getParameterBag(joinBagId);
if (joinBag != null && joinBag.hasParameters()) { if (joinBag != null && joinBag.hasParameters()) {
for (String paramId : joinBag.getParameterKeySet()) { for (String paramId : joinBag.getParameterKeySet()) {