Im developing a plugin that has node(computer) objects with attributes like:
String name
String description
String labels
Launcher computerLauncher
And so on.
I have access to an method so i can get the node(computer) object in an xml-formated String like:
String xml = jenkins.instance.toXML(node);
that gets me a string:
<name>Computer1</name>
<description>This is a description</description>
<labels>label1 label2</labels>
<launcher>windows.object.launcher.12da1</launcher>
Then I can go the otherway back like:
Node node = jenkins.instance.fromXML(xml);
I have no methods for changing attributes in a Node so i want to go toXML, change som attributes and then make it a Node again.
How would you do this?
I see two options.
Manipulate the xml with some String methods to replace everything in between the <> tags.
Try to type the xml string to something like a real xml object or a json object and manipulate it that way.
Thanks for any advise.