[jboss-jira] [JBoss JIRA] (DROOLS-225) KSessionDefinitionParser does not parse all its attributes

Sergey Zh (JIRA) jira-events at lists.jboss.org
Fri Aug 16 06:07:26 EDT 2013


Sergey Zh created DROOLS-225:
--------------------------------

             Summary: KSessionDefinitionParser does not parse all its attributes
                 Key: DROOLS-225
                 URL: https://issues.jboss.org/browse/DROOLS-225
             Project: Drools
          Issue Type: Bug
      Security Level: Public (Everyone can see)
    Affects Versions: 6.0.0.CR1
            Reporter: Sergey Zh
            Assignee: Mark Proctor


Here are all the attributes of the kie:session which can be configured with spring:
{code:xml}
    <xsd:attribute name="name" use="required" type="xsd:ID"/>
    <xsd:attribute name="type" type="ksessionType"/>
    <xsd:attribute name="default" type="xsd:boolean"/>
    <xsd:attribute name="scope" type="xsd:string"/>
    <xsd:attribute name="clockType" type="clockTypeEnum"/>
    <xsd:attribute name="listeners-ref" use="optional" type="xsd:IDREF"/>
{code}

And here are all the attributes which are processed by KSessionDefinitionParser 

{code}
public class KSessionDefinitionParser extends AbstractBeanDefinitionParser {

    private static final String ATTRIBUTE_ID = "name";
    private static final String ATTRIBUTE_TYPE = "type";

...
{code} 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


More information about the jboss-jira mailing list