
io.scalecube.services.examples.helloworld.service.api.Greeting Maven / Gradle / Ivy
package io.scalecube.services.examples.helloworld.service.api;
public class Greeting {
String message;
public Greeting() {}
public Greeting(String message) {
this.message = message;
}
public String message() {
return message;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy