Uses of Class
javax.xml.ws.Endpoint
-
Packages that use Endpoint 软件包 描述 javax.xml.ws 此软件包包含核心JAX-WS API。javax.xml.ws.spi 此套件为JAX-WS定义了SPI。 -
-
Uses of Endpoint in javax.xml.ws
Methods in javax.xml.ws that return Endpoint Modifier and Type 方法 描述 static Endpoint
Endpoint. create(Object implementor)
创建具有指定的实现对象的端点。static Endpoint
Endpoint. create(Object implementor, WebServiceFeature... features)
创建具有指定的实现者对象和Web服务功能的端点。static Endpoint
Endpoint. create(String bindingId, Object implementor)
创建具有指定绑定类型和实现方对象的端点。static Endpoint
Endpoint. create(String bindingId, Object implementor, WebServiceFeature... features)
创建具有指定绑定类型,实现方对象和Web服务功能的端点。static Endpoint
Endpoint. publish(String address, Object implementor)
在给定的地址创建并发布指定的实现者对象的端点。static Endpoint
Endpoint. publish(String address, Object implementor, WebServiceFeature... features)
在给定的地址创建并发布指定的实现者对象的端点。Methods in javax.xml.ws that return types with arguments of type Endpoint Modifier and Type 方法 描述 abstract Set<Endpoint>
EndpointContext. getEndpoints()
这给出了应用程序中的端点列表。 -
Uses of Endpoint in javax.xml.ws.spi
Methods in javax.xml.ws.spi that return Endpoint Modifier and Type 方法 描述 abstract Endpoint
Provider. createAndPublishEndpoint(String address, Object implementor)
创建并发布具有指定地址和实现对象的端点对象。Endpoint
Provider. createAndPublishEndpoint(String address, Object implementor, WebServiceFeature... features)
创建并发布具有指定地址,实现对象和Web服务功能的端点对象。Endpoint
Provider. createEndpoint(String bindingId, Class<?> implementorClass, Invoker invoker, WebServiceFeature... features)
使用提供的绑定,实现类,调用者和Web服务功能创建端点对象。abstract Endpoint
Provider. createEndpoint(String bindingId, Object implementor)
使用提供的绑定和实现对象创建端点对象。Endpoint
Provider. createEndpoint(String bindingId, Object implementor, WebServiceFeature... features)
使用提供的绑定,实现对象和Web服务功能创建端点对象。
-