this.route.params.switchMap((params: Params) => {
      return this.configService.getConfigurations(params['uuid']);
    }).subscribe(
      data => this.initConfigurations(data),
      err => console.error('There was an error: ' + err)