Mark Brouwer wrote:
1) Going through the source of the contributed services to see which other proxies provided by Seven should take advantage of ReferentUuid I noticed that for Reggie the decision was made to have com.sun.jini.reggie.Registration implement ReferentUuid, while for the other type of registrations (events) it was decided that they don't implement ReferentUuid, what is the rationale behind that decision?
Not sure what you have in mind, EventRegistration isn't a proxy interface.
2) Why don't the equals implementation at least check whether the object passed in for the test of equality implements the same interface.
Because that would introduce the defined-in-different-class-loaders problem that you're trying to avoid. - Bob
