Files
spring-boot-rest/xstream-introduction/src/main/java/com/baeldung/pojo/CustomerPortfolio.java
ankur-singhal 452070aa35 XStream- Object to Xml
Closing Review comments, test cases added.
2016-03-20 20:46:58 +05:30

21 lines
531 B
Java

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