/** * Address.java * * This file was auto-generated from WSDL * by the Apache Axis 1.4.1-SNAPSHOT Mar 11, 2019 (00:47:30 UTC) WSDL2Java emitter. */ package com.projectname.webservice.generated; public class Address implements java.io.Serializable { . . . public Address( java.lang.String addr1, java.lang.String addr2, java.lang.String city, java.lang.String state, java.lang.String country, java.lang.String zip) { this.addr1 = addr1; this.addr2 = addr2; this.city = city; this.state = state; this.country = country; this.zip = zip; } . . .