We have a websercie code written in java version 1.4 and axis 1.4 now we are trying to upgrade to java 1.7 I am getting below errors while compiling with java 1.7 version.
[javac]
^
[javac] (use -source 5 or higher to use 'enum' as a keyword)
[javac] C:\xxx\adapter\xyz\src\abc\java\com\a\b\c\d\schema\e
_PrototypeSoapStub.java:30: warning: as of release 5, 'enum' is a keyword, and m
ay not be used as an identifier
[javac] oper.setUse(org.apache.axis.enum.Use.ENCODED);
[javac] ^
[javac] (use -source 5 or higher to use 'enum' as a keyword)
[javac] C:\xxx\adapter\xyz\src\abc\java\com\a\b\c\d\schema\e
_PrototypeSoapStub.java:41: warning: as of release 5, 'enum' is a keyword, and m ay not be used as an identifier
[javac] oper.setStyle(org.apache.axis.enum.Style.RPC);
[javac] ^
[javac] (use -source 5 or higher to use 'enum' as a keyword)
[javac] C:\xxx\adapter\xyz\src\abc\java\com\a\b\c\d\schema\e
_PrototypeSoapStub.java:42: warning: as of release 5, 'enum' is a keyword, and m
ay not be used as an identifier
[javac] oper.setUse(org.apache.axis.enum.Use.ENCODED);
could you please suggest how to resolve this??
Java 5 added a language feature calls enums.
From Java 5 enum cannot be used as an identifier (method name, variable name, part of package) as it is a keyword.
You have to use newer version of the library.