public ExplorerInfoListEntity listExplorers() {
List<ExplorerInfoEntity> list = Lists.newArrayList();
for (Explorer explorer : manager.getExplorers()) {
if (!(explorer instanceof RemoteExplorerModule)) {
list.add(new ExplorerInfoEntity(explorer));
}
}
ExplorerInfoListEntity response = new ExplorerInfoListEntity();
response.setExplorers(list);