Update an existing server node configuration with the given ID.
void updateServerNode(java.lang.Integer serverNodeId, ServerNodeVO serverNode)
throws SUPAdminException;
If successful, returns silently. If unsuccessful, throws SUPAdminException.
@org.junit.Test
public void testUpdateServerNode() throws Exception {
ServerNodeVO node = supRelayServer.getServerNode(1);
if (node == null) {
System.out.println("There is no server node with ID 1.");
}
node.setName("node1_upated");
node.setToken("token_updated");
supRelayServer.updateServerNode(node.getID(), node);
}