case class PipelineContext(config: PipelineConfig, job: Option[PipelineJob] = None) extends Product with Serializable

The complete configuration context for a pipeline.

config

The pipeline configuration.

job

An optional job configuration; None if not specified.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PipelineContext
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new PipelineContext()

    Overloaded constructor that loads the configuration set by the Pipeline Service.

  2. new PipelineContext(config: PipelineConfig, job: Optional[PipelineJob])

    Overloaded constructor that supports Java types.

    Overloaded constructor that supports Java types.

    config

    The pipeline configuration.

    job

    An optional job configuration; None if not specified.

  3. new PipelineContext(config: PipelineConfig, job: Option[PipelineJob] = None)

    config

    The pipeline configuration.

    job

    An optional job configuration; None if not specified.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. lazy val applicationConfig: Config

    Returns the application's configuration, as specified in application.conf/json/properties.

    Returns the application's configuration, as specified in application.conf/json/properties.

    The configuration is cached and recomputed only if the pipeline context is serialized.

    Annotations
    @transient()
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  7. val config: PipelineConfig
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def getConfig: PipelineConfig

    returns

    the pipeline configuration.

  12. def getIdentity: Optional[PipelineIdentity]

    returns

    the optional identity configuration as a Java Optional object.

  13. def getJob: Optional[PipelineJob]

    returns

    the optional job configuration as a Java Optional object.

  14. val identity: Option[PipelineIdentity]

    returns

    the optional identity setup by the service.

  15. def inputCatalogDescription(catalogId: String): InputCatalogDescription

    Returns the description for a catalog given its symbolic ID as defined in the configuration.

    Returns the description for a catalog given its symbolic ID as defined in the configuration.

    catalogId

    The symbolic ID of the catalog.

    returns

    InputCatalogDescription object containing HRN and a ProcessingType object or None if not specified.

  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. val job: Option[PipelineJob]
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. def outputCatalogDescription: OutputCatalogDescription

    Returns the description for the output catalog.

    Returns the description for the output catalog.

    returns

    OutputCatalogDescription object containing HRN and possibly a base version.

  22. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  23. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped