Retrieve a server node configuration wtih the given ID.
ServerNodeVO getServerNode(Integer serverNodeId)
throws SUPAdminException;
If successful, returns an object of the specified type (can be null). If unsuccessful, returns SUPAdminException.
@Test
public void testGetServerNode() throws Exception {
ServerNodeVO serverNode = suprs.getServerNode(1);
if (serverNode != null) {
String serverNodeName = serverNode.getName();
System.out.println(serverNodeName);
}
}