Use of 'const' for arguments in setter methods of generated types
-----------------------------------------------------------------

                 Key: AXIS2C-864
                 URL: https://issues.apache.org/jira/browse/AXIS2C-864
             Project: Axis2-C
          Issue Type: Improvement
    Affects Versions: Current (Nightly)
            Reporter: Frank Huebbers



In setter methods of the various types generated by the wsdl2c tool, I would 
like to see a const classifier on the inputs, especially in the case when the 
input is of type axis2_char_t. 

For example, for a LoginType I have a username which I can set. In the current 
version of the tool, the following prototype is generated:

axis2_status_t AXIS2_CALL
        adb_LoginType_set_username(
            adb_LoginType_t* _LoginType,
            const axutil_env_t *env,
            axis2_char_t*  arg_username);

What would be better, however, is the following:

axis2_status_t AXIS2_CALL
        adb_LoginType_set_username(
            adb_LoginType_t* _LoginType,
            const axutil_env_t *env,
            const axis2_char_t*  arg_username);

I generated the client stub with the following options on the wsdl2c tool: -uri 
myWSDL.wsdl -d adb -u

Thanks for all the help and time in advance.

Cheers,
Frank


-- 
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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to