File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/org/jlab/srm/business/session Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -108,15 +108,15 @@ public List<Component> filterList(
108108 filters .add (root .get ("system" ).in (systemList ));
109109 }
110110 if (systemId != null ) {
111- filters .add (root .get ("system" ).in (systemId ));
111+ filters .add (root .get ("system" ).get ( "systemId" ). in (systemId ));
112112 }
113113 if (regionId != null ) {
114- filters .add (root .get ("region" ).in (regionId ));
114+ filters .add (root .get ("region" ).get ( "regionId" ). in (regionId ));
115115 }
116116 if (groupId != null ) {
117117 Join <Category , GroupResponsibility > responsibilities =
118118 systems .join ("groupResponsibilityList" );
119- filters .add (responsibilities .get ("group" ).in (groupId ));
119+ filters .add (responsibilities .get ("group" ).get ( "groupId" ). in (groupId ));
120120 }
121121 if (applicationId != null ) {
122122 Join <Component , SystemEntity > system = root .join ("system" );
You can’t perform that action at this time.
0 commit comments