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

com.ibm.jbatch.container.modelresolver.impl.ItemReaderPropertyResolverImpl Maven / Gradle / Ivy

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

import java.util.Properties;

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


public class ItemReaderPropertyResolverImpl extends AbstractPropertyResolver {


	public ItemReaderPropertyResolverImpl(boolean isPartitionStep) {
		super(isPartitionStep);
	}


	@Override
	public ItemReader substituteProperties(ItemReader reader,
			Properties submittedProps, Properties parentProps) {

        //resolve all the properties used in attributes and update the JAXB model
		reader.setRef(this.replaceAllProperties(reader.getRef(), submittedProps, parentProps));

        // Resolve all the properties defined for this artifact
        if (reader.getProperties() != null) {
            this.resolveElementProperties(reader.getProperties().getPropertyList(), submittedProps, parentProps);
        }

        return reader;
		
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy