[ http://issues.apache.org/jira/browse/GRFT-99?page=comments#action_12436662 ] Dan Connelly commented on GRFT-99: ----------------------------------
Of course, the user will need to implement a custom CollectionConvert when his object model as a Collection that is not a standard ManageableCollection. He has to build his Collection by iterating on the ManageableCollection that is supplied. > ManageableCollectionUtil should not throw "unsupported" JcrMapping exception > ---------------------------------------------------------------------------- > > Key: GRFT-99 > URL: http://issues.apache.org/jira/browse/GRFT-99 > Project: Graffito > Issue Type: Improvement > Components: JCR-Mapping > Affects Versions: 1.0-a1-dev > Environment: All > Reporter: Dan Connelly > > Many times, the object model'd code cannot be altered for ocm. > To avoid the "unsupported" exception in almost all such cases, use a > delegating wrapper class to encapsulate a Collection. The wrapper class > implements MaangeableCollection. > Since delegation is a performance hit, make the test below the last resort > for *object* conversion in the method: > public static ManageableCollection getManageableCollection(Object object) > Proposed "catchall" test and program action: > if (object instanceof Collection) { > return new ManageableCollectionImpl((Collection)object); > } -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira
