package org.ejbca.core.protocol.ws.jaxws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import org.ejbca.core.protocol.ws.objects.NameAndId;
@XmlRootElement(name = "getAvailableCAsInProfileResponse", namespace = "http://ws.protocol.core.ejbca.org/")
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "getAvailableCAsInProfileResponse", namespace = "http://ws.protocol.core.ejbca.org/")
public class GetAvailableCAsInProfileResponse {
@XmlElement(name = "return", namespace = "")
private NameAndId[] _return;
/**
*
* @return
* returns NameAndId[]
*/
public NameAndId[] get_return() {
return this._return;
}
/**
*
* @param _return
* the value for the _return property
*/
public void set_return(NameAndId[] _return) {
this._return = _return;
}
}
|