Package com.sun.jersey.spi.monitoring

Examples of com.sun.jersey.spi.monitoring.ResponseListener


    }

    public static ResponseListener createResponseListener(ProviderServices providerServices) {

        final Set<ResponseListener> listeners = providerServices.getProvidersAndServices(ResponseListener.class);
        ResponseListener responseListener = listeners.isEmpty() ? EMPTY_LISTENER : new AggregatedResponseListener(listeners);

        for(ResponseListenerAdapter a : providerServices.getProvidersAndServices(ResponseListenerAdapter.class)) {
            responseListener = a.adapt(responseListener);
        }
View Full Code Here

TOP

Related Classes of com.sun.jersey.spi.monitoring.ResponseListener

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.