21 lines
558 B
Java
21 lines
558 B
Java
package com.baeldung.pojo;
|
|
|
|
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
|
|
|
import java.util.List;
|
|
|
|
@XStreamAlias("CustomerPortfolio")
|
|
public class CustomerPortfolio {
|
|
|
|
private List<CustomerAddressDetails> customerAddressDetailsList;
|
|
|
|
public List<CustomerAddressDetails> getCustomerAddressDetailsList() {
|
|
return customerAddressDetailsList;
|
|
}
|
|
|
|
public void setCustomerAddressDetailsList(List<CustomerAddressDetails> customerAddressDetailsList) {
|
|
this.customerAddressDetailsList = customerAddressDetailsList;
|
|
}
|
|
|
|
}
|