Policy importing multiple instances of same class can not be evaluated (Java)
-----------------------------------------------------------------------------
Key: IMPERIUS-29
URL: https://issues.apache.org/jira/browse/IMPERIUS-29
Project: Imperius
Issue Type: Bug
Environment: Windows XP, Java 1.5
Reporter: David Wood
Assignee: Bill Stoddard
If you have a policy that does something like the following:
Import Class java.util.Map:props1;
Import Class java.util.Map:props2;
we get
at
org.apache.imperius.spl.parser.compiler.symboltable.AnchorData.insertInstanceObject(AnchorData.java:131)
at
org.apache.imperius.spl.parser.compiler.symboltable.SPLSymbolTable._insertInstanceObject(SPLSymbolTable.java:546)
at
org.apache.imperius.spl.parser.compiler.symboltable.SPLSymbolTable.populateInstanceValuesForInstance(SPLSymbolTable.java:499)
at
org.apache.imperius.spl.parser.statements.impl.SPLPolicy._evaluatePolicies(SPLPolicy.java:138)
at
org.apache.imperius.spl.parser.statements.impl.SPLPolicy.evaluateForResults(SPLPolicy.java:374)
Problem goes away if you change to the following
Import Class java.util.Map:props1;
Import Class java.util.Properties:props2;
But a change like this is not always acceptable.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.