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

com.streamsets.pipeline.sdk.SdkRuntimeInfo Maven / Gradle / Ivy

/*
 * Copyright (c) 2021 StreamSets Inc.
 */
package com.streamsets.pipeline.sdk;

import com.codahale.metrics.MetricRegistry;
import com.streamsets.datacollector.main.RuntimeInfo;

import java.util.List;

public class SdkRuntimeInfo extends RuntimeInfo {

  public SdkRuntimeInfo(String propertyPrefix, MetricRegistry metrics, List stageLibraryClassLoaders) {
    super(RuntimeInfo.SDC_PRODUCT, propertyPrefix, metrics, stageLibraryClassLoaders);
    this.setBaseHttpUrl("no-where://");
  }

  @Override
  public void init() {
  }

  @Override
  public String getId() {
    return "";
  }

  @Override
  public String getMasterSDCId() {
    return "";
  }

  @Override
  public String getRuntimeDir() {
    return "";
  }

  @Override
  public boolean isClusterSlave() {
    return false;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy