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

com.ibm.jbatch.container.artifact.proxy.InjectionReferences Maven / Gradle / Ivy

There is a newer version: 1.0
Show newest version
package com.ibm.jbatch.container.artifact.proxy;

import java.util.List;

import javax.batch.runtime.context.JobContext;
import javax.batch.runtime.context.StepContext;

import com.ibm.jbatch.jsl.model.Property;



/**
 * This is a container class that holds on to the property and context injections
 * that should be injected into a batch artifact. 
 * 
 */
public class InjectionReferences {

    private final JobContext jobContext;
    private final StepContext stepContext;
    
    private List props;
    
    public InjectionReferences(JobContext jobContext, StepContext stepContext, 
            List props) {

        this.jobContext = jobContext;
        this.stepContext = stepContext;
        this.props = props;
    }

    public JobContext getJobContext() {
        return jobContext;
    }

    public StepContext getStepContext() {
        return stepContext;
    }

    public List getProps() {
        return props;
    }

    public void setProps(List props) {
        this.props = props;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy