Package com.sun.enterprise.admin.wsmgmt.stats.spi

Examples of com.sun.enterprise.admin.wsmgmt.stats.spi.StatsProviderManager


    /**
     * Returns the stats provider for this web service endpoint.
     */
    private WebServiceEndpointStatsProvider getWSProvider() {
        final String NS = "#";
        StatsProviderManager spMgr = StatsProviderManager.getInstance();

        String fqName = null;
        if (isStandAlone == false) {
            fqName = registrationName + NS + moduleName + NS + epName;
        } else {
            fqName = registrationName + NS + epName;
        }
        WebServiceEndpointStatsProvider provider =
                spMgr.getEndpointStatsProvider(fqName);

        return provider;
    }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.admin.wsmgmt.stats.spi.StatsProviderManager

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.