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

io.scalecube.services.examples.GreetingRequest Maven / Gradle / Ivy

package io.scalecube.services.examples;

public class GreetingRequest {

  private String text;

  public GreetingRequest() {}

  public GreetingRequest(String text) {
    this.text = text;
  }

  public String getText() {
    return text;
  }

  public GreetingRequest setText(String text) {
    this.text = text;
    return this;
  }

  @Override
  public String toString() {
    final StringBuilder sb = new StringBuilder("GreetingRequest{");
    sb.append("text='").append(text).append('\'');
    sb.append('}');
    return sb.toString();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy