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

com.ibm.batch.container.modelresolver.impl.ItemWriterPropertyResolverImpl Maven / Gradle / Ivy

package com.ibm.batch.container.modelresolver.impl;

import java.util.Properties;

import jsr352.batch.jsl.ItemWriter;

public class ItemWriterPropertyResolverImpl extends AbstractPropertyResolver {

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

	@Override
	public ItemWriter substituteProperties(ItemWriter writer,
			Properties submittedProps, Properties parentProps) {

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

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

        return writer;
		
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy