[
http://jira.jboss.com/jira/browse/JBPM-311?page=all ]
Tom Baeyens closed JBPM-311.
----------------------------
Fix Version/s: jBPM 3.1.4
jBPM 3.2 beta 2
Resolution: Done
Propertys from inherited Actions not directly accessiblly
---------------------------------------------------------
Key: JBPM-311
URL:
http://jira.jboss.com/jira/browse/JBPM-311
Project: JBoss jBPM
Issue Type: Bug
Components: Core Engine
Affects Versions: jBPM 3.0
Environment: jbpm-starters-kit-with-eclipse-3.0.zip
Reporter: Michael M
Assigned To: Tom Baeyens
Priority: Minor
Fix For: jBPM 3.1.4, jBPM 3.2 beta 2
Original Estimate: 1 day
Remaining Estimate: 1 day
If i generate an Action B from Action A with a Property A.name then I can't fill the
name in (with) the processdefinition.xml...
Example :
class A extends ActionHandler {
private String name ;
get And Set'er () ...
}
class B extends A {
}
<node...>
<action class="B">
<name>test</name> <--- will fill the property but it doesnt
work
</action>
</node>
( The Problem is with all content-type's ) ..
A cause :
For one case I have look up in the org.jbpm.instantiation.BeanInstantiator SourceCode and
I see
Method[] methods = clazz.getDeclaredMethods();
but
It should be Method[] methods = clazz.getMethods();
( I mean the "clazz.getDeclaredMethods()" for content-type="bean".
For Fields-Code it's the same Problem with used
getDeclaredFields() instead getFields() ... and so on in other classes. )
--
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