package org.opennaas.extensions.router.opener.client.rpc; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementWrapper; import javax.xml.bind.annotation.XmlRootElement; @XmlRootElement(name = "getInterfaces", namespace = "http://www.craax.upc.edu/axis2/quagga_openapi") @XmlAccessorType(XmlAccessType.FIELD) public class GetInterfacesResponse { @XmlElementWrapper(name = "interfaces") @XmlElement(name = "interface") List<String> interfaces; public List<String> getInterfaces() { return interfaces; } public void setInterfaces(List<String> interfaces) { this.interfaces = interfaces; } }