mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
45 lines
841 B
Java
45 lines
841 B
Java
import javax.jws.WebMethod;
|
|
import javax.jws.WebService;
|
|
import javax.xml.ws.WebEndpoint;
|
|
import javax.xml.ws.WebServiceClient;
|
|
import javax.xml.ws.WebServiceProvider;
|
|
|
|
@WebService
|
|
class WebServiceClass { // $ JaxWsEndpoint
|
|
|
|
@WebMethod
|
|
void WebMethodMethod() { // $ JaxWsEndpointRemoteMethod
|
|
}
|
|
|
|
@WebEndpoint
|
|
void WebEndpointMethod() { // $ JaxWsEndpointRemoteMethod
|
|
}
|
|
|
|
}
|
|
|
|
@WebServiceProvider
|
|
class WebServiceProviderClass { // $ JaxWsEndpoint
|
|
|
|
@WebMethod
|
|
void WebMethodMethod() { // $ JaxWsEndpointRemoteMethod
|
|
}
|
|
|
|
@WebEndpoint
|
|
void WebEndpointMethod() { // $ JaxWsEndpointRemoteMethod
|
|
}
|
|
|
|
}
|
|
|
|
@WebServiceClient
|
|
class WebServiceClientClass { // $ JaxWsEndpoint
|
|
|
|
@WebMethod
|
|
void WebMethodMethod() { // $ JaxWsEndpointRemoteMethod
|
|
}
|
|
|
|
@WebEndpoint
|
|
void WebEndpointMethod() { // $ JaxWsEndpointRemoteMethod
|
|
}
|
|
|
|
}
|