com.sun.xml.internal.ws.client.sei.SEIStub Java Examples

The following examples show how to use com.sun.xml.internal.ws.client.sei.SEIStub. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: WSServiceDelegate.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
protected InvocationHandler getStubHandler(BindingImpl binding, SEIPortInfo eif, @Nullable WSEndpointReference epr) {
    return new SEIStub(eif, binding, eif.model, epr);
}
 
Example #2
Source File: WSServiceDelegate.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
protected InvocationHandler getStubHandler(BindingImpl binding, SEIPortInfo eif, @Nullable WSEndpointReference epr) {
    return new SEIStub(eif, binding, eif.model, epr);
}
 
Example #3
Source File: WSServiceDelegate.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
protected InvocationHandler getStubHandler(BindingImpl binding, SEIPortInfo eif, @Nullable WSEndpointReference epr) {
    return new SEIStub(eif, binding, eif.model, epr);
}
 
Example #4
Source File: WSServiceDelegate.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
protected InvocationHandler getStubHandler(BindingImpl binding, SEIPortInfo eif, @Nullable WSEndpointReference epr) {
    return new SEIStub(eif, binding, eif.model, epr);
}
 
Example #5
Source File: WSServiceDelegate.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
protected InvocationHandler getStubHandler(BindingImpl binding, SEIPortInfo eif, @Nullable WSEndpointReference epr) {
    return new SEIStub(eif, binding, eif.model, epr);
}
 
Example #6
Source File: WSServiceDelegate.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
protected InvocationHandler getStubHandler(BindingImpl binding, SEIPortInfo eif, @Nullable WSEndpointReference epr) {
    return new SEIStub(eif, binding, eif.model, epr);
}
 
Example #7
Source File: WSServiceDelegate.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
protected InvocationHandler getStubHandler(BindingImpl binding, SEIPortInfo eif, @Nullable WSEndpointReference epr) {
    return new SEIStub(eif, binding, eif.model, epr);
}
 
Example #8
Source File: WSServiceDelegate.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
protected InvocationHandler getStubHandler(BindingImpl binding, SEIPortInfo eif, @Nullable WSEndpointReference epr) {
    return new SEIStub(eif, binding, eif.model, epr);
}
 
Example #9
Source File: Stubs.java    From openjdk-jdk9 with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Creates a new strongly-typed proxy object that implements a given port interface.
 *
 * @param service
 *      see <a href="#param">common parameters</a>
 * @param binding
 *      see <a href="#param">common parameters</a>
 * @param model
 *      This model shall represent a port interface.
 *      TODO: can model be constructed from portInterface and binding?
 *      Find out and update.
 * @param portInterface
 *      The port interface that has operations as Java methods.
 * @param next
 *      see <a href="#param">common parameters</a>
 * @param epr
 *      see <a href="#param">common parameters</a>
 */
public <T> T createPortProxy( WSService service, WSBinding binding, SEIModel model,
                              Class<T> portInterface, Tube next, @Nullable WSEndpointReference epr ) {

    SEIStub ps = new SEIStub((WSServiceDelegate)service,(BindingImpl)binding, (SOAPSEIModel)model, next, epr);
    return portInterface.cast(
        Proxy.newProxyInstance( portInterface.getClassLoader(),
            new Class[]{portInterface, WSBindingProvider.class}, ps ));
}
 
Example #10
Source File: Stubs.java    From openjdk-8 with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Creates a new strongly-typed proxy object that implements a given port interface.
 *
 * @param portInfo
 *      see <a href="#param">common parameters</a>
 * @param binding
 *      see <a href="#param">common parameters</a>
 * @param model
 *      This model shall represent a port interface.
 *      TODO: can model be constructed from portInterface and binding?
 *      Find out and update.
 * @param portInterface
 *      The port interface that has operations as Java methods.
 * @param epr
 *      see <a href="#param">common parameters</a>
 */
public <T> T createPortProxy( WSPortInfo portInfo, WSBinding binding, SEIModel model,
                              Class<T> portInterface, @Nullable WSEndpointReference epr ) {

    SEIStub ps = new SEIStub(portInfo, (BindingImpl)binding, (SOAPSEIModel)model, epr);
    return portInterface.cast(
        Proxy.newProxyInstance( portInterface.getClassLoader(),
            new Class[]{portInterface, WSBindingProvider.class}, ps ));
}
 
Example #11
Source File: Stubs.java    From openjdk-8 with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Creates a new strongly-typed proxy object that implements a given port interface.
 *
 * @param service
 *      see <a href="#param">common parameters</a>
 * @param binding
 *      see <a href="#param">common parameters</a>
 * @param model
 *      This model shall represent a port interface.
 *      TODO: can model be constructed from portInterface and binding?
 *      Find out and update.
 * @param portInterface
 *      The port interface that has operations as Java methods.
 * @param next
 *      see <a href="#param">common parameters</a>
 * @param epr
 *      see <a href="#param">common parameters</a>
 */
public <T> T createPortProxy( WSService service, WSBinding binding, SEIModel model,
                              Class<T> portInterface, Tube next, @Nullable WSEndpointReference epr ) {

    SEIStub ps = new SEIStub((WSServiceDelegate)service,(BindingImpl)binding, (SOAPSEIModel)model, next, epr);
    return portInterface.cast(
        Proxy.newProxyInstance( portInterface.getClassLoader(),
            new Class[]{portInterface, WSBindingProvider.class}, ps ));
}
 
Example #12
Source File: Stubs.java    From openjdk-8-source with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Creates a new strongly-typed proxy object that implements a given port interface.
 *
 * @param portInfo
 *      see <a href="#param">common parameters</a>
 * @param binding
 *      see <a href="#param">common parameters</a>
 * @param model
 *      This model shall represent a port interface.
 *      TODO: can model be constructed from portInterface and binding?
 *      Find out and update.
 * @param portInterface
 *      The port interface that has operations as Java methods.
 * @param epr
 *      see <a href="#param">common parameters</a>
 */
public <T> T createPortProxy( WSPortInfo portInfo, WSBinding binding, SEIModel model,
                              Class<T> portInterface, @Nullable WSEndpointReference epr ) {

    SEIStub ps = new SEIStub(portInfo, (BindingImpl)binding, (SOAPSEIModel)model, epr);
    return portInterface.cast(
        Proxy.newProxyInstance( portInterface.getClassLoader(),
            new Class[]{portInterface, WSBindingProvider.class}, ps ));
}
 
Example #13
Source File: Stubs.java    From openjdk-8-source with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Creates a new strongly-typed proxy object that implements a given port interface.
 *
 * @param service
 *      see <a href="#param">common parameters</a>
 * @param binding
 *      see <a href="#param">common parameters</a>
 * @param model
 *      This model shall represent a port interface.
 *      TODO: can model be constructed from portInterface and binding?
 *      Find out and update.
 * @param portInterface
 *      The port interface that has operations as Java methods.
 * @param next
 *      see <a href="#param">common parameters</a>
 * @param epr
 *      see <a href="#param">common parameters</a>
 */
public <T> T createPortProxy( WSService service, WSBinding binding, SEIModel model,
                              Class<T> portInterface, Tube next, @Nullable WSEndpointReference epr ) {

    SEIStub ps = new SEIStub((WSServiceDelegate)service,(BindingImpl)binding, (SOAPSEIModel)model, next, epr);
    return portInterface.cast(
        Proxy.newProxyInstance( portInterface.getClassLoader(),
            new Class[]{portInterface, WSBindingProvider.class}, ps ));
}
 
Example #14
Source File: Stubs.java    From hottub with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Creates a new strongly-typed proxy object that implements a given port interface.
 *
 * @param portInfo
 *      see <a href="#param">common parameters</a>
 * @param binding
 *      see <a href="#param">common parameters</a>
 * @param model
 *      This model shall represent a port interface.
 *      TODO: can model be constructed from portInterface and binding?
 *      Find out and update.
 * @param portInterface
 *      The port interface that has operations as Java methods.
 * @param epr
 *      see <a href="#param">common parameters</a>
 */
public <T> T createPortProxy( WSPortInfo portInfo, WSBinding binding, SEIModel model,
                              Class<T> portInterface, @Nullable WSEndpointReference epr ) {

    SEIStub ps = new SEIStub(portInfo, (BindingImpl)binding, (SOAPSEIModel)model, epr);
    return portInterface.cast(
        Proxy.newProxyInstance( portInterface.getClassLoader(),
            new Class[]{portInterface, WSBindingProvider.class}, ps ));
}
 
Example #15
Source File: Stubs.java    From hottub with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Creates a new strongly-typed proxy object that implements a given port interface.
 *
 * @param service
 *      see <a href="#param">common parameters</a>
 * @param binding
 *      see <a href="#param">common parameters</a>
 * @param model
 *      This model shall represent a port interface.
 *      TODO: can model be constructed from portInterface and binding?
 *      Find out and update.
 * @param portInterface
 *      The port interface that has operations as Java methods.
 * @param next
 *      see <a href="#param">common parameters</a>
 * @param epr
 *      see <a href="#param">common parameters</a>
 */
public <T> T createPortProxy( WSService service, WSBinding binding, SEIModel model,
                              Class<T> portInterface, Tube next, @Nullable WSEndpointReference epr ) {

    SEIStub ps = new SEIStub((WSServiceDelegate)service,(BindingImpl)binding, (SOAPSEIModel)model, next, epr);
    return portInterface.cast(
        Proxy.newProxyInstance( portInterface.getClassLoader(),
            new Class[]{portInterface, WSBindingProvider.class}, ps ));
}
 
Example #16
Source File: Stubs.java    From openjdk-jdk9 with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Creates a new strongly-typed proxy object that implements a given port interface.
 *
 * @param portInfo
 *      see <a href="#param">common parameters</a>
 * @param binding
 *      see <a href="#param">common parameters</a>
 * @param model
 *      This model shall represent a port interface.
 *      TODO: can model be constructed from portInterface and binding?
 *      Find out and update.
 * @param portInterface
 *      The port interface that has operations as Java methods.
 * @param epr
 *      see <a href="#param">common parameters</a>
 */
public <T> T createPortProxy( WSPortInfo portInfo, WSBinding binding, SEIModel model,
                              Class<T> portInterface, @Nullable WSEndpointReference epr ) {

    SEIStub ps = new SEIStub(portInfo, (BindingImpl)binding, (SOAPSEIModel)model, epr);
    return portInterface.cast(
        Proxy.newProxyInstance( portInterface.getClassLoader(),
            new Class[]{portInterface, WSBindingProvider.class}, ps ));
}
 
Example #17
Source File: Stubs.java    From TencentKona-8 with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Creates a new strongly-typed proxy object that implements a given port interface.
 *
 * @param service
 *      see <a href="#param">common parameters</a>
 * @param binding
 *      see <a href="#param">common parameters</a>
 * @param model
 *      This model shall represent a port interface.
 *      TODO: can model be constructed from portInterface and binding?
 *      Find out and update.
 * @param portInterface
 *      The port interface that has operations as Java methods.
 * @param next
 *      see <a href="#param">common parameters</a>
 * @param epr
 *      see <a href="#param">common parameters</a>
 */
public <T> T createPortProxy( WSService service, WSBinding binding, SEIModel model,
                              Class<T> portInterface, Tube next, @Nullable WSEndpointReference epr ) {

    SEIStub ps = new SEIStub((WSServiceDelegate)service,(BindingImpl)binding, (SOAPSEIModel)model, next, epr);
    return portInterface.cast(
        Proxy.newProxyInstance( portInterface.getClassLoader(),
            new Class[]{portInterface, WSBindingProvider.class}, ps ));
}
 
Example #18
Source File: Stubs.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Creates a new strongly-typed proxy object that implements a given port interface.
 *
 * @param portInfo
 *      see <a href="#param">common parameters</a>
 * @param binding
 *      see <a href="#param">common parameters</a>
 * @param model
 *      This model shall represent a port interface.
 *      TODO: can model be constructed from portInterface and binding?
 *      Find out and update.
 * @param portInterface
 *      The port interface that has operations as Java methods.
 * @param epr
 *      see <a href="#param">common parameters</a>
 */
public <T> T createPortProxy( WSPortInfo portInfo, WSBinding binding, SEIModel model,
                              Class<T> portInterface, @Nullable WSEndpointReference epr ) {

    SEIStub ps = new SEIStub(portInfo, (BindingImpl)binding, (SOAPSEIModel)model, epr);
    return portInterface.cast(
        Proxy.newProxyInstance( portInterface.getClassLoader(),
            new Class[]{portInterface, WSBindingProvider.class}, ps ));
}
 
Example #19
Source File: Stubs.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Creates a new strongly-typed proxy object that implements a given port interface.
 *
 * @param service
 *      see <a href="#param">common parameters</a>
 * @param binding
 *      see <a href="#param">common parameters</a>
 * @param model
 *      This model shall represent a port interface.
 *      TODO: can model be constructed from portInterface and binding?
 *      Find out and update.
 * @param portInterface
 *      The port interface that has operations as Java methods.
 * @param next
 *      see <a href="#param">common parameters</a>
 * @param epr
 *      see <a href="#param">common parameters</a>
 */
public <T> T createPortProxy( WSService service, WSBinding binding, SEIModel model,
                              Class<T> portInterface, Tube next, @Nullable WSEndpointReference epr ) {

    SEIStub ps = new SEIStub((WSServiceDelegate)service,(BindingImpl)binding, (SOAPSEIModel)model, next, epr);
    return portInterface.cast(
        Proxy.newProxyInstance( portInterface.getClassLoader(),
            new Class[]{portInterface, WSBindingProvider.class}, ps ));
}
 
Example #20
Source File: Stubs.java    From openjdk-jdk8u with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Creates a new strongly-typed proxy object that implements a given port interface.
 *
 * @param portInfo
 *      see <a href="#param">common parameters</a>
 * @param binding
 *      see <a href="#param">common parameters</a>
 * @param model
 *      This model shall represent a port interface.
 *      TODO: can model be constructed from portInterface and binding?
 *      Find out and update.
 * @param portInterface
 *      The port interface that has operations as Java methods.
 * @param epr
 *      see <a href="#param">common parameters</a>
 */
public <T> T createPortProxy( WSPortInfo portInfo, WSBinding binding, SEIModel model,
                              Class<T> portInterface, @Nullable WSEndpointReference epr ) {

    SEIStub ps = new SEIStub(portInfo, (BindingImpl)binding, (SOAPSEIModel)model, epr);
    return portInterface.cast(
        Proxy.newProxyInstance( portInterface.getClassLoader(),
            new Class[]{portInterface, WSBindingProvider.class}, ps ));
}
 
Example #21
Source File: Stubs.java    From openjdk-jdk8u with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Creates a new strongly-typed proxy object that implements a given port interface.
 *
 * @param service
 *      see <a href="#param">common parameters</a>
 * @param binding
 *      see <a href="#param">common parameters</a>
 * @param model
 *      This model shall represent a port interface.
 *      TODO: can model be constructed from portInterface and binding?
 *      Find out and update.
 * @param portInterface
 *      The port interface that has operations as Java methods.
 * @param next
 *      see <a href="#param">common parameters</a>
 * @param epr
 *      see <a href="#param">common parameters</a>
 */
public <T> T createPortProxy( WSService service, WSBinding binding, SEIModel model,
                              Class<T> portInterface, Tube next, @Nullable WSEndpointReference epr ) {

    SEIStub ps = new SEIStub((WSServiceDelegate)service,(BindingImpl)binding, (SOAPSEIModel)model, next, epr);
    return portInterface.cast(
        Proxy.newProxyInstance( portInterface.getClassLoader(),
            new Class[]{portInterface, WSBindingProvider.class}, ps ));
}
 
Example #22
Source File: Stubs.java    From jdk8u60 with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Creates a new strongly-typed proxy object that implements a given port interface.
 *
 * @param portInfo
 *      see <a href="#param">common parameters</a>
 * @param binding
 *      see <a href="#param">common parameters</a>
 * @param model
 *      This model shall represent a port interface.
 *      TODO: can model be constructed from portInterface and binding?
 *      Find out and update.
 * @param portInterface
 *      The port interface that has operations as Java methods.
 * @param epr
 *      see <a href="#param">common parameters</a>
 */
public <T> T createPortProxy( WSPortInfo portInfo, WSBinding binding, SEIModel model,
                              Class<T> portInterface, @Nullable WSEndpointReference epr ) {

    SEIStub ps = new SEIStub(portInfo, (BindingImpl)binding, (SOAPSEIModel)model, epr);
    return portInterface.cast(
        Proxy.newProxyInstance( portInterface.getClassLoader(),
            new Class[]{portInterface, WSBindingProvider.class}, ps ));
}
 
Example #23
Source File: Stubs.java    From jdk8u60 with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Creates a new strongly-typed proxy object that implements a given port interface.
 *
 * @param service
 *      see <a href="#param">common parameters</a>
 * @param binding
 *      see <a href="#param">common parameters</a>
 * @param model
 *      This model shall represent a port interface.
 *      TODO: can model be constructed from portInterface and binding?
 *      Find out and update.
 * @param portInterface
 *      The port interface that has operations as Java methods.
 * @param next
 *      see <a href="#param">common parameters</a>
 * @param epr
 *      see <a href="#param">common parameters</a>
 */
public <T> T createPortProxy( WSService service, WSBinding binding, SEIModel model,
                              Class<T> portInterface, Tube next, @Nullable WSEndpointReference epr ) {

    SEIStub ps = new SEIStub((WSServiceDelegate)service,(BindingImpl)binding, (SOAPSEIModel)model, next, epr);
    return portInterface.cast(
        Proxy.newProxyInstance( portInterface.getClassLoader(),
            new Class[]{portInterface, WSBindingProvider.class}, ps ));
}
 
Example #24
Source File: Stubs.java    From TencentKona-8 with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Creates a new strongly-typed proxy object that implements a given port interface.
 *
 * @param portInfo
 *      see <a href="#param">common parameters</a>
 * @param binding
 *      see <a href="#param">common parameters</a>
 * @param model
 *      This model shall represent a port interface.
 *      TODO: can model be constructed from portInterface and binding?
 *      Find out and update.
 * @param portInterface
 *      The port interface that has operations as Java methods.
 * @param epr
 *      see <a href="#param">common parameters</a>
 */
public <T> T createPortProxy( WSPortInfo portInfo, WSBinding binding, SEIModel model,
                              Class<T> portInterface, @Nullable WSEndpointReference epr ) {

    SEIStub ps = new SEIStub(portInfo, (BindingImpl)binding, (SOAPSEIModel)model, epr);
    return portInterface.cast(
        Proxy.newProxyInstance( portInterface.getClassLoader(),
            new Class[]{portInterface, WSBindingProvider.class}, ps ));
}