/**
  * Get the list of compatible systems you could sync to
  *
  * @return DataResult of System DTOs
  */
 public List<Map<String, Object>> getCompatibleSystems() {
   if (!isCobblerOnly()) {
     return SystemManager.systemsSubscribedToChannel(
         this.getKsdata().getKickstartDefaults().getKstree().getChannel(), user);
   }
   return Collections.EMPTY_LIST;
 }