Operation Advisor - Custom Precondition for Work Items
![]()
Phillip Piper (158●1●24●24)
| asked Sep 29 '11, 3:58 p.m.
edited Aug 03 '12, 7:28 p.m. by Jared Burns (4.5k●2●9)
I am just starting with extending our RTC server. I downloaded the SDK and started reviewing the following links:
https://jazz.net/wiki/bin/view/Main/CustomPreconditionFollowup https://jazz.net/library/article/495/ What I would like to do is require that change sets have been delivered prior to transitioning a work item to a specific state. I thought this could be achieved via an extension to the com.ibm.team.workitem.operation.workItemSave operation ID. There are aspects of this that I'd like to model off existing preconditions. Is there a way to pull the existing precondition code to review? I am not sure if they are in the source that comes with the SDK or where it would be located. Also, is there any article that discusses custom preconditions which modify the UI? I'd like people to be able to select states similar to the "Prevent Editing" precondition. Finally, on another note, it might be nice if RTC provided a plug-in template which could be used for different ways to extend it. Anyway, I'll take any assistance from anybody that has coded up their own custom preconditions. Thanks in advance. |
Accepted answer
![]()
here is my complete, and operating PreCondition OperationAdvisor..
this enforces 'Depends On' links to actually DEPEND on the remote end item being resolved.. This works on 3.0 ifix1 and 3.0.1 and thru 5.2 in binary form. package xxxxx;; // set your package name import org.eclipse.core.runtime.IProgressMonitor; import com.ibm.team.links.common.IReference; import com.ibm.team.process.common.IProcessConfigurationElement; Ralph Schoon selected this answer as the correct answer
Comments 1
Sam, one observation. You always want to add extends AbstractService to the class. good catch thanks, fixed here.. this was a cut/paste from some workshop sample I think. ![]() FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER
@sam, it is a great plasure to work with you and your contributions anre just extraordinary. Thank you so much! I had the same C&P issue and it got me into a lot of trouble. 8-) hey, we found a bug.. this advisor only works if the terminal state of the other workitem is 'Resolved'.. Stories terminate in 'Done'.. so, I gotta update the code..
I updated the code to resolve the bug when the end of the links closed state was not 'resolved' (but done or complete).. this also handles if the target was invalidated.
Hi Sam,
If you are using Eclipse, then create a new line, type WorkItemEndPoints
showing 5 of 7
show 2 more comments
|
13 other answers
![]()
I get a pop-up error box when trying to use the UI config for the precondition in the operation behavior editor that gives a NullPointerException. And when I debugged it looks like either the getWorkbench() or getActiveWorkbenchWindow() returned null. I googled and it looks like it's possible to for the latter call to return null. Every other precondition editor I looked at had it coded the same way. Eventually, in my attempts to figure this out, it went away but I am not sure why. I never changed that code either. It was quite strange.
FWIW when writing future extensions, I've posted the following on my blog about one approach to figuring out which services you require: http://ryehle.wordpress.com/2011/11/21/finding-the-right-service-api-for-your-process-extension/ Thanks Robin! I'll check this out because I have a few more extensions to write after working my way through this one which is almost complete. |
![]()
FWIW when writing future extensions, I've posted the following on my blog about one approach to figuring out which services you require: http://ryehle.wordpress.com/2011/11/21/finding-the-right-service-api-for-your-process-extension/ |
![]() So one challenge I am having is in creating the Aspect Editor. What do you mean when you say "I keep getting null returned for this call"? Do you mean you get NullPointerException exception? If so, can you please provide the exception stack? Or, did you see any error log in the console? I know nothing about the Extensions Workshop. I am just trying to figure our the problem from the basic technical view. |
![]()
I don't use that, so sorry no help
Sam |
![]()
So one challenge I am having is in creating the Aspect Editor.
I keep getting null returned for this call: PlatformUI.getWorkbench().getActiveWorkbenchWindow().run(true, true, new RunnableWithProgress() {.... Is there any reason for why this happens or how to avoid? I am following the pattern in the getWorkItemsType call of the 3.0.1 Extensions Workshop labs which is consistent with what I see in the out of the box preconditions. Thanks. |
![]() Same here Sam. Most of my material is also from helping people. Thanks Sam and Ralph. I will follow up with any preconditions I am able to write as well to help others. Thanks again for updating the extensions workshop. I really thought it was well done. |
![]()
Ralph Schoon (61.8k●3●36●43)
| answered Nov 16 '11, 11:55 a.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER
Same here Sam. Most of my material is also from helping people.
I hope we can pull more material together to provide more workshop material. It is just a matter of how much time I can spend. Thanks so much for contributing! |
![]()
no problem.. don't care about attribution.. just trying to help others as they have helped me
I also submitted this to enhancement 182769.. build it, ship it and let users select it.. vs having to write code. https://jazz.net/jazz/resource/itemName/com.ibm.team.workitem.WorkItem/182769 Sam |
![]()
Ralph Schoon (61.8k●3●36●43)
| answered Nov 16 '11, 11:32 a.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER
Hi Sam,
I ruthlessly stole your code and intent to incorporate it in my set of example trophies, if that is OK with you. I will put your name in as author. Phillip, there are several examples in the WiKi: https://jazz.net/wiki/bin/view/Main/RtcSdk20 they are hard to find. I agree, it would be great to have all these examples. It comes down to be get clearance to publish code and resources to create, collect and worse maintain it. The workshop has been updated recently. The services, you need at least
I think it does not matter if pre- or postcondition as long as the required interface is similar. |