Java API: Move Build Definitions to folder
![]()
Hello,
I am trying to move a Build Definition that was just created to a Build Definition folder in through the Java API. To do this I am using moveItemsToFolder. How do I genereate the IBuildFolderHandle? Below is my snippet of code and where I am stuck. Thank you!
IBuildFolderHandle buildfolder = newDefinition_workingcopy.getParent();
System.out.println(buildfolder);
buildClient.moveItemsToFolder(defhandle, "IBuildFolderHandle", myMonitor);
System.out.println();
|