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

javax.batch.runtime.context.StepContext Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show 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 javax.batch.runtime.context;

/**
 * 
 * StepContext is the class field type associated with the @StepContext 
 * annotation. A StepContext provides information about the current step 
 * of a job execution.
 *
 * @see javax.batch.annotation.context.StepContext
 */
import java.io.Externalizable;
import java.util.Properties;

import javax.batch.runtime.Metric;

public interface StepContext extends BatchContext, Externalizable {
	/**
	 * The getStepExecutionId method returns the current step's execution id.
	 * 
	 * @return step execution id
	 */
	public long getStepExecutionId();

	/**
	 * The getProperties method returns the step level properties specified in a
	 * job definition.
	 * 
	 * @return job level properties
	 */
	public Properties getProperties();

	/**
	 * The getPersistentUserData method returns a persistent data object
	 * belonging to the current step. The user data type must implement
	 * java.util.Externalizable. This data is saved as part of a step's
	 * checkpoint. For a step that does not do checkpoints, it is saved after
	 * the step ends. It is available upon restart.
	 * 
	 * @return user-specified type
	 */
	public P getPersistentUserData();

	/**
	 * The setPersistentUserData method stores a persistent data object into the
	 * current step. The user data type must implement java.util.Externalizable.
	 * This data is saved as part of a step's checkpoint. For a step that does
	 * not do checkpoints, it is saved after the step ends. It is available upon
	 * restart.
	 * 
	 * @param data
	 *            is the user-specified type
	 */
	public void setPersistentUserData(P data);

	/**
	 * The getExitStatus method simply returns the exit status value stored into
	 * the step context through the setExitStatus method or null.
	 * 
	 * @return exit status string
	 */
	public String getExitStatus();

	/**
	 * The setExitStatus method assigns the user-specified exit status for the
	 * current step. When the step ends, the exit status of the step is the
	 * value specified through setExitStatus. If setExitStatus was not called or
	 * was called with a null value, then the exit status defaults to the batch
	 * status of the step.
	 * 
	 * @Param status string
	 */
	public void setExitStatus(String status);

	/**
	 * The getException method returns the last exception thrown from a step
	 * level batch artifact to the batch runtime.
	 * 
	 * @return the last exception
	 */
	public Exception getException();

	/**
	 * The getMetrics method returns an array of step level metrics. These are
	 * things like commits, skips, etc.
	 * 
	 * @see javax.batch.runtime.javax.batch.runtime.metric.Metric for definition of standard
	 *      metrics.
	 * @return metrics array
	 */
	public Metric[] getMetrics();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy