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

com.roskart.dropwizard.jaxws.example.ws.SimpleService Maven / Gradle / Ivy

There is a newer version: 1.2.3
Show newest version
package com.roskart.dropwizard.jaxws.example.ws;

import com.codahale.metrics.annotation.Metered;

import javax.jws.WebMethod;
import javax.jws.WebService;

@WebService
public class SimpleService {

    @WebMethod
    @Metered
    public String echo(String input) {
        return input;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy