com.ibm.jbatch.container.modelresolver.impl.StepPropertyResolverImpl Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2012 International Business Machines Corp.
*
* See the NOTICE file distributed with this work for additional information
* regarding copyright ownership. Licensed under the Apache License,
* Version 2.0 (the "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.ibm.jbatch.container.modelresolver.impl;
import java.util.Properties;
import com.ibm.jbatch.container.jsl.TransitionElement;
import com.ibm.jbatch.container.modelresolver.PropertyResolverFactory;
import com.ibm.jbatch.jsl.model.Listener;
import com.ibm.jbatch.jsl.model.Step;
public class StepPropertyResolverImpl extends AbstractPropertyResolver {
public StepPropertyResolverImpl(boolean isPartitionStep) {
super(isPartitionStep);
}
@Override
public Step substituteProperties(final Step step, final Properties submittedProps, final Properties parentProps) {
// resolve all the properties used in attributes and update the JAXB
// model
step.setId(this.replaceAllProperties(step.getId(), submittedProps, parentProps));
step.setAllowStartIfComplete(this.replaceAllProperties(step.getAllowStartIfComplete(), submittedProps, parentProps));
step.setNextFromAttribute(this.replaceAllProperties(step.getNextFromAttribute(), submittedProps, parentProps));
step.setStartLimit(this.replaceAllProperties(step.getStartLimit(), submittedProps, parentProps));
// Resolve all the properties defined for this step
Properties currentProps = parentProps;
if (step.getProperties() != null) {
currentProps = this.resolveElementProperties(step.getProperties().getPropertyList(), submittedProps, parentProps);
}
// Resolve partition
if (step.getPartition() != null) {
PropertyResolverFactory.createPartitionPropertyResolver(this.isPartitionedStep).substituteProperties(step.getPartition(), submittedProps, currentProps);
}
// Resolve Listener properties, this is list of listeners List
if (step.getListeners() != null) {
for (final Listener listener : step.getListeners().getListenerList()) {
PropertyResolverFactory.createListenerPropertyResolver(this.isPartitionedStep).substituteProperties(listener, submittedProps, currentProps);
}
}
if (step.getTransitionElements() != null) {
for (final TransitionElement controlElement : step.getTransitionElements()) {
PropertyResolverFactory.createTransitionElementPropertyResolver(this.isPartitionedStep).substituteProperties(controlElement, submittedProps, currentProps);
}
}
// Resolve Batchlet properties
if (step.getBatchlet() != null) {
PropertyResolverFactory.createBatchletPropertyResolver(this.isPartitionedStep).substituteProperties(step.getBatchlet(), submittedProps, currentProps);
}
// Resolve Chunk properties
if (step.getChunk() != null) {
PropertyResolverFactory.createChunkPropertyResolver(this.isPartitionedStep).substituteProperties(step.getChunk(), submittedProps, currentProps);
}
return step;
}
}