changed sort

git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portlets/widgets/ws-thredds-sync-widget@165078 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Francesco Mangiacrapa 2018-03-14 15:26:18 +00:00
parent eecde178e5
commit 10fb9dffa9
1 changed files with 4 additions and 2 deletions

View File

@ -167,8 +167,10 @@ public class ThreddsWorkspaceSyncServiceImpl extends RemoteServiceServlet implem
if (!isWithinPortal()){
listOfScopes.add(new GcubeScope("devVRE", "/gcube/devsec/devVRE", GcubeScopeType.VRE));
listOfScopes.add(new GcubeScope("NextNext", "/gcube/devNext/NextNext", GcubeScopeType.VRE));
listOfScopes.add(new GcubeScope("/gcube/devNext", "/gcube/devNext", GcubeScopeType.VO));
listOfScopes.add(new GcubeScope("/gcube", "/gcube", GcubeScopeType.ROOT));
listOfScopes.add(new GcubeScope("devNext", "/gcube/devNext", GcubeScopeType.VO));
listOfScopes.add(new GcubeScope("devsec", "/gcube/devsec", GcubeScopeType.VO));
listOfScopes.add(new GcubeScope("gcube", "/gcube", GcubeScopeType.ROOT));
Collections.sort(listOfScopes);
return listOfScopes;
}