I have a integer field in a class which I have made private and no setter method is provided but when I generate the client with WSDL2Java, the generated class has a setter method.
Why is it so?
I am using Apache Axis 2.
I am putting the code for more explanation
public class MyClass {
private int id;
public int getId() {
return id;
}
}
So what should I do to hide the setter method when client is generated.