Class StepScopedContext

java.lang.Object
nablarch.fw.batch.ee.cdi.StepScopedContext
All Implemented Interfaces:
jakarta.enterprise.context.spi.Context

public class StepScopedContext extends Object implements jakarta.enterprise.context.spi.Context
ステップ単位で値を共有するためのContext実装クラス

StepContextの一時領域を使用してステップ単位での値の共有を実現している。 そのため、バッチアプリケーション側でStepContext.setTransientUserData(Object)を直接使用することはできない点に注意すること。

  • Constructor Details

    • StepScopedContext

      public StepScopedContext()
  • Method Details

    • getScope

      public Class<? extends Annotation> getScope()
      Specified by:
      getScope in interface jakarta.enterprise.context.spi.Context
    • get

      public <T> T get(jakarta.enterprise.context.spi.Contextual<T> contextual, jakarta.enterprise.context.spi.CreationalContext<T> creationalContext)
      Specified by:
      get in interface jakarta.enterprise.context.spi.Context
    • get

      public <T> T get(jakarta.enterprise.context.spi.Contextual<T> contextual)
      Specified by:
      get in interface jakarta.enterprise.context.spi.Context
    • isActive

      public boolean isActive()
      Specified by:
      isActive in interface jakarta.enterprise.context.spi.Context