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

nl.vpro.rs.VersionRestService Maven / Gradle / Ivy

There is a newer version: 5.3.3
Show newest version
package nl.vpro.rs;

import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.core.MediaType;

/**
 * @author Michiel Meeuwissen
 * @since 5.0
 */
@Path("/version")
@Produces(MediaType.TEXT_PLAIN)
public interface VersionRestService {


    @GET
    String getVersion();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy