dev@jax-ws.java.net

Re: CVS update [rearch-2005]: /jax-ws-sources/jaxws-ri/rt/src/com/sun/xml/ws/model/

From: Doug Kohlert <Doug.Kohlert_at_Sun.COM>
Date: Wed, 18 Jan 2006 08:16:45 -0800

Kohsuke,
JAX-WS supports other types of bindings other than SOAPBinding, how will
we handle this?

kohsuke_at_dev.java.net wrote:

>Tag: rearch-2005
>User: kohsuke
>Date: 2006/01/18 07:06:47
>
>Log:
> improved the type signature.
>
>File Changes:
>
>Directory: /jax-ws-sources/jaxws-ri/rt/src/com/sun/xml/ws/model/
>================================================================
>
>File [changed]: JavaMethodImpl.java
>Url: https://jax-ws-sources.dev.java.net/source/browse/jax-ws-sources/jaxws-ri/rt/src/com/sun/xml/ws/model/JavaMethodImpl.java?r1=1.1.2.2&r2=1.1.2.3
>Delta lines: +3 -3
>-------------------
>--- JavaMethodImpl.java 14 Jan 2006 01:08:50 -0000 1.1.2.2
>+++ JavaMethodImpl.java 18 Jan 2006 15:06:42 -0000 1.1.2.3
>@@ -69,7 +69,7 @@
> /**
> * @return the Binding object
> */
>- public Object getBinding() {
>+ public SOAPBinding getBinding() {
> if (binding == null)
> return new SOAPBinding();
> return binding;
>@@ -78,7 +78,7 @@
> /**
> * @param binding
> */
>- public void setBinding(Object binding) {
>+ public void setBinding(SOAPBinding binding) {
> this.binding = binding;
> }
>
>@@ -228,7 +228,7 @@
> Collections.unmodifiableList(requestParams);
> private final List<Parameter> unmResParams =
> Collections.unmodifiableList(responseParams);
>- private Object binding;
>+ private SOAPBinding binding;
> private MEP mep;
> private String operationName;
> }
>
>
>
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: cvs-unsubscribe_at_jax-ws-sources.dev.java.net
>For additional commands, e-mail: cvs-help_at_jax-ws-sources.dev.java.net
>
>
>

-- 
 - Doug