[JBoss JIRA] Created: (JBIDE-6917) BPEL Editor does not start if extensionActivity is not defined
by Robert (Bob) Brodt (JIRA)
BPEL Editor does not start if extensionActivity is not defined
--------------------------------------------------------------
Key: JBIDE-6917
URL: https://jira.jboss.org/browse/JBIDE-6917
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: bpel
Reporter: Robert (Bob) Brodt
Assignee: Robert (Bob) Brodt
Fix For: 3.2.x
I tried importing a BPEL source file (see attachment) that has extension activities defined, but the editor plugin did not contain serializer/deserializer classes or definitions for the extension activities. This caused an NPE during construction of the grapical EditParts.
This is unacceptable behavior - the editor should be able to display the parts of the process that are valid and create error markers for the missing extensions.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 6 months
[JBoss JIRA] Created: (JBIDE-6955) Erroroneous error about CDI observer method on session bean
by Pete Muir (JIRA)
Erroroneous error about CDI observer method on session bean
-----------------------------------------------------------
Key: JBIDE-6955
URL: https://jira.jboss.org/browse/JBIDE-6955
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: cdi (jsr-299)
Affects Versions: 3.2.0.M1
Reporter: Pete Muir
Assignee: Alexey Kazakov
Given this bean
@Singleton
public class CodeFragmentLogger
{
private final List<CodeFragment> log;
public CodeFragmentLogger()
{
this.log = new ArrayList<CodeFragment>();
}
@Lock(LockType.WRITE)
public void addEntry(@Observes CodeFragment codeFragment)
{
this.log.add(codeFragment);
}
}
JBoss Tools adds an error, saying "Non-static method of a session bean class has a parameter annotated @Observes, and the method is not a business method of the EJB"
For a start, I think this should say "Non-static method <method name> of session bean <bean class>..."
Also, of course, this error is erroneous, the method *is* a business method of the EJB.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 6 months
[JBoss JIRA] Created: (JBIDE-6957) Erroneous error about decorators and delegate types
by Pete Muir (JIRA)
Erroneous error about decorators and delegate types
---------------------------------------------------
Key: JBIDE-6957
URL: https://jira.jboss.org/browse/JBIDE-6957
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: cdi (jsr-299)
Affects Versions: 3.2.0.M1
Reporter: Pete Muir
Assignee: Alexey Kazakov
Given a decorator like
@Decorator
public abstract class FloodingDecorator implements CodeFragmentManager, Serializable
{
private static final long serialVersionUID = -4615837206290420112L;
@Inject @Delegate
private CodeFragmentManager codeFragmentManager;
}
JBoss Tools errors, telling me "The delegate type must implement or extend the decorated type Serializable [JSR-299 §8.1.3]"
However, it doesn't have to implement serializable - the delegate type must be one of the decorated types, not all of them
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 6 months