Package org.codehaus.xfire.service.event

Examples of org.codehaus.xfire.service.event.RegistrationEvent


        qname2service.put(endpoint.getName(), endpoint);

        for (Iterator iterator = eventListeners.iterator(); iterator.hasNext();)
        {
            RegistrationEventListener listener = (RegistrationEventListener) iterator.next();
            RegistrationEvent event = new RegistrationEvent(this, endpoint);
            listener.endpointRegistered(event);
        }
    }
View Full Code Here


    public void unregister(Service endpoint)
    {
        for (Iterator iterator = eventListeners.iterator(); iterator.hasNext();)
        {
            RegistrationEventListener listener = (RegistrationEventListener) iterator.next();
            RegistrationEvent event = new RegistrationEvent(this, endpoint);
            listener.endpointUnregistered(event);
        }

        if (name2service.containsValue(endpoint))
            name2service.remove(endpoint.getSimpleName());
View Full Code Here

TOP

Related Classes of org.codehaus.xfire.service.event.RegistrationEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.