19,6 → 19,7 |
import javax.jws.WebMethod; |
import javax.jws.WebParam; |
import javax.jws.WebService; |
import net.brutex.xservices.types.HostConnection; |
import net.brutex.xservices.types.ReturnCode; |
import net.brutex.xservices.util.BrutexNamespaces; |
|
31,4 → 32,11 |
|
@WebMethod(operationName="getHostinfo") |
public ReturnCode getHostinfo(@WebParam(name="hostname") String hostname); |
|
@WebMethod(operationName="sendMailSimple") |
public ReturnCode sendMailSimple(@WebParam(name="mailhost") HostConnection mailhost, |
@WebParam(name="from") String from, |
@WebParam(name="to") String tolist, |
@WebParam(name="subject") String subject, |
@WebParam(name="message") String message); |
} |