public static WSDLBean[] populateWSDLBean(Wsdl[] wsdls) throws GovernanceException {
if (wsdls == null) return null;
WSDLBean[] wsdlBean = new WSDLBean[wsdls.length];
for (int j = 0; j < wsdls.length; j++) {
wsdlBean[j] = new WSDLBean();
if (wsdls[j] != null) {
wsdlBean[j].setId(wsdls[j].getId());
wsdlBean[j].setPath(wsdls[j].getPath());
wsdlBean[j].setqName(getName(wsdls[j].getQName()));
wsdlBean[j].setAttachedSchemas(populateSchemaBean(wsdls[j].getAttachedSchemas()));