package test.soap12;

public class Echo {
    public String echo(String text) {
        return text;
    }
}
