You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by "Amila Chinthaka Suriarachchi (JIRA)" <ji...@apache.org> on 2007/02/28 10:04:05 UTC

[jira] Resolved: (AXIS2-1657) Problems in generated CallbackHandler in client side

     [ https://issues.apache.org/jira/browse/AXIS2-1657?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Amila Chinthaka Suriarachchi resolved AXIS2-1657.
-------------------------------------------------

    Resolution: Fixed

add the method header comments

> Problems in generated CallbackHandler in client side
> ----------------------------------------------------
>
>                 Key: AXIS2-1657
>                 URL: https://issues.apache.org/jira/browse/AXIS2-1657
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Improvement
>          Components: codegen
>    Affects Versions: nightly
>            Reporter: Deepal Jayasinghe
>         Assigned To: Amila Chinthaka Suriarachchi
>
> When I generate client side code it generates a CallbackHandler abstract class , but the issue with that is it does not have any abstract methods. So I think we should generate that class with abstract methods then user can easily understand what he needs to do. Sample CallBackHandler class is attached below;
> public abstract class DateServerCallbackHandler {
>     protected Object clientData;
>     public DateServerCallbackHandler(Object clientData) {
>         this.clientData = clientData;
>     }
>     public DateServerCallbackHandler() {
>         this.clientData = null;
>     }
>     public Object getClientData() {
>         return clientData;
>     }
>     public void receiveResultgetDates(
>             com.mydomain.service.xsd.DateServerStub.GetDatesResponse param1) {
>     }
>     public void receiveErrorgetDates(java.lang.Exception e) {
>     }
> }

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


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org