jBPM GPD
by Thomas Diesler
Hi Koen,
looking at the GPD roadmap
http://jira.jboss.com/jira/browse/GPD?report=com.atlassian.jira.plugin.sy...
It seems that it is undefined when a certain release is to be expected
and how it relates to the overall jbpm release cycle.
I therefore suggest, we align the GPD roadmap with rest of deliverables
in a simmilar way we do as for jBPM4
http://www.jboss.com/index.html?module=bb&op=viewtopic&t=138255
Could you please create the respective versions in JIRA and assign
release dates to them?
The next two releases should come out on
1-Sep-2008
1-Nov-2008
This move is motivated by the need to improve predictability for BPM
related releases. It should not affect the amount of stuff that gets done.
cheers
-thomas
--
xxxxxxxxxxxxxxxxxxxxxxxxxxxx
Thomas Diesler
Web Service Lead
JBoss, a division of Red Hat
xxxxxxxxxxxxxxxxxxxxxxxxxxxx
17 years, 4 months
Upcoming JIRA-Freeze for BPM
by Thomas Diesler
Hi Folks,
according to http://www.jboss.com/index.html?module=bb&op=viewtopic&t=138199
we have JIRA Freeze this Monday, 14-Jul-2008. By that date it should be
clear what gets delivered 1-Sep-2008 for the next BPM release.
In JIRA that translates to every issue being assigned and that there are
no unassigned issues left. Please review the list of issues and assign
them to yourself if appropriate.
Alejandro: 2 issues
Heiko: 18 issues
Koen: 1 issue
Thomas: 6 issues
Tom: 5 issues
Unassigned: 18 issues
cheers
-thomas
--
xxxxxxxxxxxxxxxxxxxxxxxxxxxx
Thomas Diesler
Web Service Lead
JBoss, a division of Red Hat
xxxxxxxxxxxxxxxxxxxxxxxxxxxx
17 years, 4 months
[Design of JBoss jBPM] - doModelUpdate, doModelRemove in ControllerDomAdapter
by spidek
Hello, I'm extending gpd, and I can't find a way to synchronizing xml with model when somebody is removing tags from xml source that are nested in controller.
I have custom TaskControllerHandlers and in gpd i differentiate tasknodes with them by controller's classname. I also have many custom XXXDomAdapters that extend TaskNodeAdapter, custom XXXPropertySections and custom models.
My problem is - I can't react in my custom DomAdapters to user removing whole tags nested in controller tag in tasknodes, becouse nor doModelUpdate neither doModelRemove of my DomAdapter are called. So xml and model are not synchronized anymore.
It would be very useful for me, if instead of being empty method doModelRemove of ControllerDomAdapter would have something like that:
| protected void doModelRemove(XmlAdapter child) {
| String type = child.getElementType();
| Controller controller = (Controller) getSemanticElement();
| if ("genericElement".equals(type)) {
| controller.removeGenericElement((GenericElement) child
| .getSemanticElement());
| }
| }
|
I didn't know if this is bug, so I send it here, not at JIRA.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4163265#4163265
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4163265
17 years, 4 months