This commit is contained in:
parent
6c0ffd9824
commit
998048b494
|
@ -67,7 +67,8 @@ public class UtilCommunityAPI {
|
||||||
.readValue(eu.dnetlib.dhp.communityapi.QueryCommunityAPI.communities(), CommunitySummary.class)
|
.readValue(eu.dnetlib.dhp.communityapi.QueryCommunityAPI.communities(), CommunitySummary.class)
|
||||||
.stream()
|
.stream()
|
||||||
.filter(
|
.filter(
|
||||||
community -> (community.getStatus().equals("all") || community.getStatus().equalsIgnoreCase("public")) &&
|
community -> (community.getStatus().equals("all") || community.getStatus().equalsIgnoreCase("public"))
|
||||||
|
&&
|
||||||
(community.getType().equals("ri") || community.getType().equals("community")))
|
(community.getType().equals("ri") || community.getType().equals("community")))
|
||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
|
|
||||||
|
|
|
@ -27,10 +27,6 @@
|
||||||
<name>sourcePath</name>
|
<name>sourcePath</name>
|
||||||
<description>the source path</description>
|
<description>the source path</description>
|
||||||
</property>
|
</property>
|
||||||
<property>
|
|
||||||
<name>isLookUpUrl</name>
|
|
||||||
<description>the isLookup service endpoint</description>
|
|
||||||
</property>
|
|
||||||
<property>
|
<property>
|
||||||
<name>outputPath</name>
|
<name>outputPath</name>
|
||||||
<description>the output path</description>
|
<description>the output path</description>
|
||||||
|
|
Loading…
Reference in New Issue