org.hpccsystems.ws.client.wrappers.ArrayOfXRefFileWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wsclient Show documentation
Show all versions of wsclient Show documentation
This project allows a user to interact with ESP services in a controlled manner. The API calls available under org.hpccsystems.ws.client.platform allow for a user to target ESP's across multiple environments running a range of hpccsystems-platform versions. There is no guarantee that if a user utilizes org.hpccsystems.ws.client.gen generated stub code from wsdl, that the calls will be backwards compatible with older hpccsystems-platform versions.
package org.hpccsystems.ws.client.wrappers;
import java.io.ByteArrayInputStream;
import java.util.ArrayList;
import java.util.List;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import org.w3c.dom.Document;
import org.w3c.dom.NodeList;
public class ArrayOfXRefFileWrapper
{
private final static String FILE_TAG = "File";
private List files = null;
public ArrayOfXRefFileWrapper(String wsdfuxrefresp)
{
files = new ArrayList();
if (wsdfuxrefresp != null && !wsdfuxrefresp.isEmpty())
{
try
{
DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
Document doc = dBuilder.parse(new ByteArrayInputStream(wsdfuxrefresp.getBytes("UTF-8")));
NodeList xrefnodelist = doc.getElementsByTagName(FILE_TAG);
for (int index = 0; index < xrefnodelist.getLength(); index++)
{
files.add(new XRefFileWrapper(xrefnodelist.item(index)));
}
}
catch (Exception e)
{
e.printStackTrace();
}
}
}
@Override
public String toString()
{
String out = "XRefFiles:\n";
for (XRefFileWrapper xRefFileWrapper : files)
{
out += xRefFileWrapper.toString() + "\n";
}
return out;
}
}