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

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