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