Hi David,
Thank you for the question. Please read on below.
Class A extends B.
Class B has some property foo.
Than you should be able to write:
<blueprint>
...
<bean id="bar" class="org.foo.bar.A">
<property name="foo" value="baz">
</bean>
</blueprint>
As a heads up, Tom Pantelis made an excellent Using Blueprint in
OpenDaylight presentation at ODL Summit 2016. Those slides should be
available via the LF, however you could use the below link as well:
https://www.dropbox.com/s/ch7mvxhmds1ela7/Using_Blueprint_PDF.pdf?dl=0
On Mon, Oct 24, 2016 at 8:22 PM, KARR, DAVID <[email protected]> wrote:
> I'm somewhat new to blueprint/karaf, but I've used Spring for many years.
>
> This seems like an obvious thing, but if I have a blueprint spec that defines
> a bean that references a class that has a base class which has a property I
> want to set in the bean spec for the subclass, can I just reference that
> property name in the "property" element?