Package org.wildfly.extension.picketlink.federation.metrics

Examples of org.wildfly.extension.picketlink.federation.metrics.PicketLinkSubsystemMetrics


    public PicketLinkSubsystemMetrics getMetrics() {
        if (this.metrics == null) {
            synchronized (this) {
                if (this.metrics == null) {
                    try {
                        this.metrics = new PicketLinkSubsystemMetrics(((ProviderConfiguration) getPicketLinkType().getIdpOrSP()).getSecurityDomain());
                    } catch (ConfigurationException e) {
                        ROOT_LOGGER.federationErrorCollectingMetric(e);
                    }
                }
            }
View Full Code Here

TOP

Related Classes of org.wildfly.extension.picketlink.federation.metrics.PicketLinkSubsystemMetrics

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.