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

io.hydrosphere.mist.jobs.runners.python.wrappers.ConfigurationWrapper.scala Maven / Gradle / Ivy

package io.hydrosphere.mist.jobs.runners.python.wrappers

import io.hydrosphere.mist.jobs.FullJobConfiguration

private[mist] class ConfigurationWrapper(configuration: FullJobConfiguration) {
  def parameters: Map[String, Any] = {
    configuration.parameters
  }

  def path: String = {
    configuration.path
  }

  def className: String = {
    configuration.className
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy