All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opentripplanner.ext.legacygraphqlapi.datafetchers.LegacyGraphQLSystemNoticeImpl Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
package org.opentripplanner.ext.legacygraphqlapi.datafetchers;

import graphql.schema.DataFetcher;
import graphql.schema.DataFetchingEnvironment;
import org.opentripplanner.ext.legacygraphqlapi.generated.LegacyGraphQLDataFetchers;
import org.opentripplanner.model.SystemNotice;

public class LegacyGraphQLSystemNoticeImpl
  implements LegacyGraphQLDataFetchers.LegacyGraphQLSystemNotice {

  @Override
  public DataFetcher tag() {
    return environment -> getSource(environment).tag;
  }

  @Override
  public DataFetcher text() {
    return environment -> getSource(environment).text;
  }

  private SystemNotice getSource(DataFetchingEnvironment environment) {
    return environment.getSource();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy