I've been doing a lot of integration towards SOAP services lately. Say I get this object from the SOAP service:
public class ObjectA{
private String someString;
private Integer someInteger;
}
For this object I want to make my own representation "ObjectB" which is basically the same but I dont want to expose objects from the WSDL outside my integration artifact.
So then I map between ObjectA and ObjectB. But this is a lot of manual work especially if the objects have many fields. Are there any smart ways in IntelliJ to generate a mapping between two objects?
Thanks