1 2 package org.ejbca.core.protocol.ws.jaxws; 3 4 import java.util.List ; 5 import javax.xml.bind.annotation.XmlAccessType; 6 import javax.xml.bind.annotation.XmlAccessorType; 7 import javax.xml.bind.annotation.XmlElement; 8 import javax.xml.bind.annotation.XmlRootElement; 9 import javax.xml.bind.annotation.XmlType; 10 import org.ejbca.core.protocol.ws.objects.UserDataVOWS; 11 12 @XmlRootElement(name = "findUserResponse", namespace = "http://ws.protocol.core.ejbca.org/") 13 @XmlAccessorType(XmlAccessType.FIELD) 14 @XmlType(name = "findUserResponse", namespace = "http://ws.protocol.core.ejbca.org/") 15 public class FindUserResponse { 16 17 @XmlElement(name = "return", namespace = "") 18 private List <UserDataVOWS> _return; 19 20 25 public List <UserDataVOWS> get_return() { 26 return this._return; 27 } 28 29 34 public void set_return(List <UserDataVOWS> _return) { 35 this._return = _return; 36 } 37 38 } 39 | Popular Tags |