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

com.sap.cloud.yaas.servicesdk.ping.DefaultPingResource Maven / Gradle / Ivy

There is a newer version: 4.17.1
Show newest version
/*
 * © 2016 SAP SE or an SAP affiliate company.
 * All rights reserved.
 * Please see http://www.sap.com/corporate-en/legal/copyright/index.epx for additional trademark information and
 * notices.
 */
package com.sap.cloud.yaas.servicesdk.ping;

import javax.ws.rs.core.Response;


/**
 * A resource which can be used for checking application's reachability.
 */
public class DefaultPingResource implements PingResource
{
	private String pingOkMessage = "OK";

	/* GET / */
	@Override
	public Response get()
	{
		return Response.ok().entity(pingOkMessage).build();
	}

	public void setPingOkMessage(final String pingOkMessage)
	{
		this.pingOkMessage = pingOkMessage;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy