claning
This commit is contained in:
parent
3a340bd737
commit
0596a9666c
|
@ -44,7 +44,6 @@ import eu.dnetlib.openaire.exporter.model.community.CommunitySummary;
|
|||
import eu.dnetlib.openaire.exporter.model.community.CommunityWritableProperties;
|
||||
import eu.dnetlib.openaire.exporter.model.community.SubCommunity;
|
||||
import eu.dnetlib.openaire.exporter.model.community.selectioncriteria.SelectionCriteria;
|
||||
import eu.dnetlib.openaire.exporter.model.context.ConceptSummary;
|
||||
|
||||
@Service
|
||||
@ConditionalOnProperty(value = "openaire.exporter.enable.community", havingValue = "true")
|
||||
|
@ -529,14 +528,4 @@ public class CommunityService {
|
|||
}
|
||||
}
|
||||
|
||||
public List<ConceptSummary> listSubConcepts(final String conceptId, final boolean all) throws CommunityException {
|
||||
try {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
} catch (final Throwable e) {
|
||||
log.error(e);
|
||||
throw new CommunityException(e);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -1,7 +1,12 @@
|
|||
services.is.host = localhost
|
||||
#services.is.host = localhost
|
||||
services.is.host = beta.services.openaire.eu
|
||||
|
||||
services.is.port = 8280
|
||||
services.is.protocol = http
|
||||
services.is.context = app
|
||||
|
||||
#services.is.context = app
|
||||
services.is.context = is
|
||||
|
||||
services.is.baseurl = ${services.is.protocol}://${services.is.host}:${services.is.port}/${services.is.context}/services
|
||||
|
||||
openaire.exporter.isLookupUrl = ${services.is.baseurl}/isLookUp
|
||||
|
|
Loading…
Reference in New Issue