You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Jervis Liu (JIRA)" <ji...@apache.org> on 2007/12/06 08:20:43 UTC

[jira] Created: (CXF-1268) Support createDispatch(QName portName,Class type,Mode mode,WebServiceFeature... features) etc per JAX-WS 2.1 Spec

Support createDispatch(QName portName,Class<T> type,Mode mode,WebServiceFeature... features) etc per JAX-WS 2.1 Spec 
---------------------------------------------------------------------------------------------------------------------

                 Key: CXF-1268
                 URL: https://issues.apache.org/jira/browse/CXF-1268
             Project: CXF
          Issue Type: Sub-task
          Components: JAX-WS Runtime
    Affects Versions: 2.1
            Reporter: Jervis Liu
            Assignee: Jervis Liu


Support following methods defined in JAX-WS 2.1 Spec 
    
public <T> Dispatch<T> createDispatch(QName portName,
                                          Class<T> type,
                                          Mode mode,
                                          WebServiceFeature... features) {
        throw new UnsupportedOperationException();
    }

    public <T> Dispatch<T> createDispatch(EndpointReference endpointReference,
                                          Class<T> type,
                                          Mode mode,
                                          WebServiceFeature... features) {
        throw new UnsupportedOperationException();
    }

    public Dispatch<Object> createDispatch(QName portName,
                                           JAXBContext context,
                                           Mode mode,
                                           WebServiceFeature... features) {
        throw new UnsupportedOperationException();
    }

    public Dispatch<Object> createDispatch(EndpointReference endpointReference,
                                           JAXBContext context,
                                           Mode mode,
                                           WebServiceFeature... features) {
        throw new UnsupportedOperationException();
    }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (CXF-1268) Support createDispatch(QName portName,Class type,Mode mode,WebServiceFeature... features) etc per JAX-WS 2.1 Spec

Posted by "Daniel Kulp (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CXF-1268?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Daniel Kulp resolved CXF-1268.
------------------------------

       Resolution: Fixed
    Fix Version/s: 2.1

> Support createDispatch(QName portName,Class<T> type,Mode mode,WebServiceFeature... features) etc per JAX-WS 2.1 Spec 
> ---------------------------------------------------------------------------------------------------------------------
>
>                 Key: CXF-1268
>                 URL: https://issues.apache.org/jira/browse/CXF-1268
>             Project: CXF
>          Issue Type: Sub-task
>          Components: JAX-WS Runtime
>    Affects Versions: 2.1
>            Reporter: Jervis Liu
>            Assignee: Jervis Liu
>             Fix For: 2.1
>
>
> Support following methods defined in JAX-WS 2.1 Spec 
>     
> public <T> Dispatch<T> createDispatch(QName portName,
>                                           Class<T> type,
>                                           Mode mode,
>                                           WebServiceFeature... features) {
>         throw new UnsupportedOperationException();
>     }
>     public <T> Dispatch<T> createDispatch(EndpointReference endpointReference,
>                                           Class<T> type,
>                                           Mode mode,
>                                           WebServiceFeature... features) {
>         throw new UnsupportedOperationException();
>     }
>     public Dispatch<Object> createDispatch(QName portName,
>                                            JAXBContext context,
>                                            Mode mode,
>                                            WebServiceFeature... features) {
>         throw new UnsupportedOperationException();
>     }
>     public Dispatch<Object> createDispatch(EndpointReference endpointReference,
>                                            JAXBContext context,
>                                            Mode mode,
>                                            WebServiceFeature... features) {
>         throw new UnsupportedOperationException();
>     }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.