[JBoss JIRA] Assigned: (JBPM-186) manage process definitions
by David Lloyd (JIRA)
[ http://jira.jboss.com/jira/browse/JBPM-186?page=all ]
David Lloyd reassigned JBPM-186:
--------------------------------
Assignee: David Lloyd (was: Tom Baeyens)
> manage process definitions
> --------------------------
>
> Key: JBPM-186
> URL: http://jira.jboss.com/jira/browse/JBPM-186
> Project: JBoss jBPM
> Issue Type: Feature Request
> Components: Web Interface
> Reporter: Tom Baeyens
> Assigned To: David Lloyd
> Attachments: SubMenuItems.jpg
>
> Time Spent: 1 day, 2 hours
> Remaining Estimate: 0 minutes
>
> One entry in the jBPM Administration submenu should be 'Manage Process Definitions'.
> Following features should be offered in this page
> * deploy a new process archive (file upload)
> * view all the versions of all process definitions.
> * (re)bind subprocesses to super processes
> * delete process definitions
> * show all process instances for a given process definition
> This will probably by too much for one page. I would prefer a split of the page into submenuitems just like the JEMS projects in the jboss.org site (see attachment)
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
19 years, 8 months
[JBoss JIRA] Created: (JBRULES-547) Create a specialized "exists" node in reteoo
by Edson Tirelli (JIRA)
Create a specialized "exists" node in reteoo
--------------------------------------------
Key: JBRULES-547
URL: http://jira.jboss.com/jira/browse/JBRULES-547
Project: JBoss Rules
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Components: Drl Parser/Builder, Reteoo
Reporter: Edson Tirelli
Assigned To: Edson Tirelli
Fix For: 3.1-m2
Currently, "exists" conditional element is implemented as a sequence of 2 "not" nodes. This is suboptimal for performance and adds complexity to the network with specialized constraints and the requirement for a specific RightInputAdapterNode.
Also, the currently implementation causes unnecessary work to be performed. For instance, trace the work done in the terminal node in the following example:
package org.drools
query "2 persons with the same status"
p : Person($status : status, $age : age)
exists Person(status == $status, age > $age);
end
So, replace current implementation for a specialized "ExistsNode".
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
19 years, 8 months
[JBoss JIRA] Created: (JBAS-3871) org.jboss.util.property.Property: remove property is broken
by Eike Dawid (JIRA)
org.jboss.util.property.Property: remove property is broken
-----------------------------------------------------------
Key: JBAS-3871
URL: http://jira.jboss.com/jira/browse/JBAS-3871
Project: JBoss Application Server
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Other
Affects Versions: JBossAS-4.0.4.GA
Environment: n/a
Reporter: Eike Dawid
playing around with a different format for system properties i have noticed that the "remove(final String name)" function of the SystemProperties service is broken.
It actually doesn't work at all.
The reason is a wrong method call in org.jboss.util.property.Property.
The "remove" method on this call looks like this:
/**
* Remove a property
*
* @param name Property name
* @return Removed property value or null
*/
public static String remove(String name)
{
return PropertyManager.getProperty(name);
}
As you can see it is calling the getProperty method on the PropertyManager instead of calling "removeProperty".
cheers
Eike
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
19 years, 8 months