[
https://issues.apache.org/jira/browse/AXIS2-5070?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13417019#comment-13417019
]
Hudson commented on AXIS2-5070:
-------------------------------
Integrated in Axis2 #1650 (See [https://builds.apache.org/job/Axis2/1650/])
Fixed AXIS2-5070. (Revision 1362855)
Result = SUCCESS
sagara :
Files :
*
/axis/axis2/java/core/trunk/modules/adb-codegen/src/org/apache/axis2/schema/template/ADBBeanTemplate-bean.xsl
> Enumeration type fromValue() function update breaks stub compilation
> --------------------------------------------------------------------
>
> Key: AXIS2-5070
> URL: https://issues.apache.org/jira/browse/AXIS2-5070
> Project: Axis2
> Issue Type: Bug
> Components: codegen
> Affects Versions: 1.6.0
> Reporter: Vilnis Termanis
> Assignee: Sagara Gunathunga
> Fix For: 1.7.0
>
>
> The "fix" in AXIS2-3034 unfortunately breaks WSDL generation in that the
> fromValue() function is not compilable in certain situations. For example,
> with the following type:
> <xs:simpleType name="tSomeType">
> <xs:restriction base="xs:int">
> <xs:enumeration value="1">
> <xs:annotation>
> <xs:documentation>Something</xs:documentation>
> </xs:annotation>
> </xs:enumeration>
> <xs:enumeration value="2">
> <xs:annotation>
> <xs:documentation>Something else</xs:documentation>
> </xs:annotation>
> </xs:enumeration>
> </xs:restriction>
> </xs:simpleType>
> Corresponding fromValue function now contains:
> public static TSomeType fromValue(int value)
> throws java.lang.IllegalArgumentException {
> TSomeType enumeration = (TSomeType)
>
> _table_.get(value + "");
>
> if ((enumeration == null) && !((value == null) ||
> (value.equals("")))) {
> throw new java.lang.IllegalArgumentException();
> }
> return enumeration;
> }
> Since value is of type 'int', the updated if statement results in
> compilation failure ("int cannot be dereferenced").
> Tested with Axis2 1.6.0 wsdl2java.
> Regards,
> VT
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]