io.deepsense.neptune.clientlibrary.models.JobParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neptune-client-library Show documentation
Show all versions of neptune-client-library Show documentation
Enables integration with Neptune in your Java code
/**
* Copyright (c) 2016, CodiLime Inc.
*/
package io.deepsense.neptune.clientlibrary.models;
import java.util.Map;
/**
* Represents the set of user-defined parameters of the Job.
* The keys in the map are parameter names and values
* are the parameters (@see io.deepsense.neptune.clientlibrary.models.Parameter) themselves.
* Parameters are a set of user-defined variables that will be passed to the job’s program.
* Job’s parameters are defined in the configuration file.
* Parameters’ values can be passed to a job using command line parameters
* when enqueuing or executing the job.
*/
public interface JobParameters extends Map {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy