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

org.microbule.test.hello.HelloServiceImpl Maven / Gradle / Ivy

The newest version!
package org.microbule.test.hello;

public class HelloServiceImpl implements HelloService {
//----------------------------------------------------------------------------------------------------------------------
// HelloService Implementation
//----------------------------------------------------------------------------------------------------------------------

    @Override
    public String sayHello(String name) {
        return "Hello, " + name + "!";
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy