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

com.xeiam.xchange.coinsetter.rs.CoinsetterPing Maven / Gradle / Ivy

package com.xeiam.xchange.coinsetter.rs;

import java.io.IOException;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;

import com.xeiam.xchange.coinsetter.CoinsetterException;

/**
 * RESTful/JSON API: Ping.
 */
@Path("/ping")
@Produces(MediaType.TEXT_PLAIN)
public interface CoinsetterPing {

  @GET
  @Path("{text}")
  public String ping(@PathParam("text") String text) throws CoinsetterException, IOException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy