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

net.sf.gluebooster.java.booster.basic.transformation.CallableByLogging Maven / Gradle / Ivy

package net.sf.gluebooster.java.booster.basic.transformation;

import net.sf.gluebooster.java.booster.essentials.eventsCommands.CallableAbstraction;

/**
 * Logs the call parameters.
 * 
 * @author cbauer
 *
 * @param 
 */
public class CallableByLogging extends CallableAbstraction {

	@Override
	protected Parameter[] callImpl(Parameter... parameters) throws Exception {
		getLog().info(parameters);
		return parameters;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy