Ravi Srinivasan
2019-06-04 de664729bc8ba8bb9a93a29947a1255fdeb90707
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.redhat.training.openshift.hello;
 
import javax.inject.Inject;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
 
@Path("/")
public class HelloResource {
 
    @GET
    @Path("/hello")
    @Produces("text/plain")
    public String hello() {
        String hostname = System.getenv().getOrDefault("HOSTNAME", "unknown");
    String message = System.getenv().getOrDefault("APP_MSG", null);
    String response = "";
    if (message == null)
      response = "Hello world from host "+hostname+"\n";
    else
      response = "Hello world from host ["+hostname+"]. Message received = "+message+"\n";
        return response;
    }
}