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

org.distributeme.test.direct.DirectEchoServiceImpl Maven / Gradle / Ivy

There is a newer version: 2.3.1
Show newest version
package org.distributeme.test.direct;

/**
 * TODO comment this class
 *
 * @author lrosenberg
 * @since 25.01.16 00:34
 */
public class DirectEchoServiceImpl implements DirectEchoService {
	@Override
	public int echo(int value) throws DirectServiceException {
		System.out.println("Request: "+value);
		return value;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy