use of org.bimserver.webservices.SMigrationComparator in project BIMserver by opensourceBIM.
the class AdminServiceImpl method getMigrations.
@Override
public List<SMigration> getMigrations() throws UserException {
Migrator migrator = getBimServer().getDatabase().getMigrator();
List<SMigration> list = new ArrayList<SMigration>(getBimServer().getSConverter().convertToSSetMigration(migrator.getMigrations()));
Collections.sort(list, new SMigrationComparator());
return list;
}
Aggregations