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

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

There is a newer version: 4.17.1
Show newest version

package com.sap.cloud.yaas.servicesdk.ping;

import javax.ws.rs.core.Feature;
import javax.ws.rs.core.FeatureContext;

/**
 * JAX RS feature which registers the API resources defined in the RAML.
 */
public class PingFeature implements Feature
{
	@Override
	public boolean configure(final FeatureContext context)
	{
		context.register(DefaultPingResource.class);
		return true;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy