Give registry contribution listeners a chance to retireve the contribution info 
before removing it
--------------------------------------------------------------------------------------------------

                 Key: TUSCANY-4025
                 URL: https://issues.apache.org/jira/browse/TUSCANY-4025
             Project: Tuscany
          Issue Type: Bug
          Components: SCA Java Runtime
    Affects Versions: Java-SCA-2.0-Beta3
         Environment: All 
            Reporter: Simon Laws
             Fix For: Java-SCA-2.0


In our DomainRegistryImpl class we have 

    public void uninstallContribution(String uri) {
        contributionDescriptions.remove(uri);
        for (ContributionListener listener : contributionlisteners) {
            listener.contributionRemoved(uri);
        }
    }

It should wait until the listeners have been called before removing the 
contribution description. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to