ComponentProvider should lookup superclasses and interfaces of the required
component
-------------------------------------------------------------------------------------
Key: MAGNOLIA-3079
URL: http://jira.magnolia-cms.com/browse/MAGNOLIA-3079
Project: Magnolia
Issue Type: Improvement
Components: core
Reporter: Grégory Joseph
Assignee: Philipp Bärfuss
Fix For: 4.3
If {{ComponentProvider.getSingleton(com.foo.SomeSubInterface.class)}} is
called, and no component is registered specifically for
{{com.foo.SomeSubInterface}}, the ComponentProvider should look up registration
for parents of {{com.foo.SomeSubInterface}} (i.e {{com.foo.SomeInterface}}, if
{{SomeSubInterface extends SomeInterface}})
This should:
* remove the need for casting when depending on a specific implementation:
{code}
// instead of:
SomeSubInterface z = (SomeSubInterface)
Components.getSingleton(SomeInterface.class);
// you should be able to do:
SomeSubInterface z = Components.getSingleton(SomeSubInterface.class);
// even if only SomeInterface was configured (i.e if there's only a property
for com.foo.SomeInterface)
{code}
* likewise, this should fix MAGNOLIA-3059 -- TODO: insert details as to how/why
;)
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.magnolia-cms.com/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
----------------------------------------------------------------
For list details see
http://www.magnolia-cms.com/home/community/mailing-lists.html
To unsubscribe, E-mail to: <[email protected]>
----------------------------------------------------------------