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

com.anysoft.batch.DefaultProcess Maven / Gradle / Ivy

There is a newer version: 1.6.17
Show newest version
package com.anysoft.batch;

import com.anysoft.util.DefaultProperties;

/**
 * 缺省的处理过程
 * 
 * @author duanyy
 *
 */
public class DefaultProcess implements Process {

	@Override
	public int init(DefaultProperties p) {
		p.list(System.out); // NOSONAR
		return 0;
	}
	@Override
	public int run() {
		return 0;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy