12 lines
196 B
Java
12 lines
196 B
Java
package test5_ws;
|
|
|
|
import javax.jws.WebService;
|
|
|
|
/**
|
|
* Created by Giovanni on 12/06/2015.
|
|
*/
|
|
@WebService
|
|
public interface HelloWorldInterface {
|
|
ObjectToPass modifymessage(ObjectToPass o);
|
|
}
|