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

io.nosqlbench.engine.services.ScenarioTemplateService Maven / Gradle / Ivy

package io.nosqlbench.engine.services;

import io.nosqlbench.docsys.api.WebServiceObject;
import io.nosqlbench.nb.annotations.Service;

import javax.inject.Singleton;
import javax.ws.rs.GET;
import javax.ws.rs.Path;

@Service(WebServiceObject.class)
@Singleton
@Path("/services/namedscenarios/")
public class ScenarioTemplateService implements WebServiceObject {

    public ScenarioTemplateService() {
        super();
    }

    @GET
    @Path("service-status")
    public String status() {
        return "Here at " + System.nanoTime();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy