1 2 package org.ejbca.core.protocol.ws.client.gen; 3 4 import java.util.ArrayList ; 5 import java.util.List ; 6 import javax.xml.bind.annotation.XmlAccessType; 7 import javax.xml.bind.annotation.XmlAccessorType; 8 import javax.xml.bind.annotation.XmlElement; 9 import javax.xml.bind.annotation.XmlType; 10 11 12 31 @XmlAccessorType(XmlAccessType.FIELD) 32 @XmlType(name = "findUserResponse", propOrder = { 33 "_return" 34 }) 35 public class FindUserResponse { 36 37 @XmlElement(name = "return", required = true) 38 protected List <UserDataVOWS> _return; 39 40 62 public List <UserDataVOWS> getReturn() { 63 if (_return == null) { 64 _return = new ArrayList <UserDataVOWS>(); 65 } 66 return this._return; 67 } 68 69 } 70 | Popular Tags |