Dhiraj Bokde created ARIES-1544:
-----------------------------------

             Summary: Blueprint property resolution fails for setters with 
derived type
                 Key: ARIES-1544
                 URL: https://issues.apache.org/jira/browse/ARIES-1544
             Project: Aries
          Issue Type: Bug
          Components: Blueprint
    Affects Versions: blueprint-core-1.6.2
            Reporter: Dhiraj Bokde


Blueprint property resolution expects getter and setter methods to use exactly 
the same class. It should allow setters that take a derived type using 
{{isAssignableFrom()}} instead of {{equals()}}. It currently fails for the 
following:

{code}
    class A {
        private X x;
        public X getX() { return x; }
        public void setX(X x) { this.x = x; }
    }

    class B extends A {
        public void setX(Y y) { super.setX(y); } // Y extends X
    }
{code}

Trying to set property X for bean B using Blueprint fails. 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to