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

com.jpattern.orm.script.NullScriptExecutor Maven / Gradle / Ivy

There is a newer version: 6.3.0
Show newest version
package com.jpattern.orm.script;

import java.io.IOException;
import java.io.InputStream;
import java.nio.charset.Charset;

import com.jpattern.orm.exception.OrmException;

/**
 * 
 * @author Francesco Cina
 *
 * 02/lug/2011
 */
public class NullScriptExecutor implements ScriptExecutor {

	@Override
	public void execute(String script) throws OrmException {
	}

	@Override
	public void execute(InputStream scriptStream) throws IOException, OrmException {
	}

	@Override
	public void execute(InputStream scriptStream, Charset charset) throws IOException, OrmException {
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy