/* * JBoss, Home of Professional Open Source. * Copyright 2012, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.wildfly.extension.picketlink.federation.model.idp; import org.jboss.as.controller.SimpleAttributeDefinition; import org.jboss.dmr.ModelNode; import org.jboss.msc.service.ServiceName; import org.wildfly.extension.picketlink.federation.metrics.AbstractPicketLinkMetricsOperationHandler; import org.wildfly.extension.picketlink.federation.metrics.PicketLinkSubsystemMetrics; import org.wildfly.extension.picketlink.federation.service.IdentityProviderService; import static org.wildfly.extension.picketlink.common.model.ModelElement.METRICS_CREATED_ASSERTIONS_COUNT; import static org.wildfly.extension.picketlink.common.model.ModelElement.METRICS_ERROR_RESPONSE_TO_SP_COUNT; import static org.wildfly.extension.picketlink.common.model.ModelElement.METRICS_ERROR_SIGN_VALIDATION_COUNT; import static org.wildfly.extension.picketlink.common.model.ModelElement.METRICS_ERROR_TRUSTED_DOMAIN_COUNT; import static org.wildfly.extension.picketlink.common.model.ModelElement.METRICS_EXPIRED_ASSERTIONS_COUNT; import static org.wildfly.extension.picketlink.common.model.ModelElement.METRICS_LOGIN_COMPLETE_COUNT; import static org.wildfly.extension.picketlink.common.model.ModelElement.METRICS_LOGIN_INIT_COUNT; import static org.wildfly.extension.picketlink.common.model.ModelElement.METRICS_RESPONSE_TO_SP_COUNT; /** * <p> Provide access to the metrics collected from a specific Identity Provider deployment. </p> * * @author <a href="mailto:psilva@redhat.com">Pedro Silva</a> */ public class IdentityProviderMetricsOperationHandler extends AbstractPicketLinkMetricsOperationHandler { static final IdentityProviderMetricsOperationHandler INSTANCE = new IdentityProviderMetricsOperationHandler(); static final SimpleAttributeDefinition[] ATTRIBUTES = { CREATED_ASSERTIONS_COUNT, RESPONSE_TO_SP_COUNT, ERROR_RESPONSE_TO_SP_COUNT, ERROR_SIGN_VALIDATION_COUNT, ERROR_TRUSTED_DOMAIN_COUNT, EXPIRED_ASSERTIONS_COUNT, LOGIN_COMPLETE_COUNT, LOGIN_INIT_COUNT }; private IdentityProviderMetricsOperationHandler() { } @Override protected void doPopulateResult(PicketLinkSubsystemMetrics metrics, ModelNode result, String attributeName) { if (METRICS_CREATED_ASSERTIONS_COUNT.getName().equals(attributeName)) { result.set(metrics.getCreatedAssertionsCount()); } else if (METRICS_RESPONSE_TO_SP_COUNT.getName().equals(attributeName)) { result.set(metrics.getResponseToSPCount()); } else if (METRICS_ERROR_RESPONSE_TO_SP_COUNT.getName().equals(attributeName)) { result.set(metrics.getErrorResponseToSPCount()); } else if (METRICS_ERROR_SIGN_VALIDATION_COUNT.getName().equals(attributeName)) { result.set(metrics.getErrorSignValidationCount()); } else if (METRICS_ERROR_TRUSTED_DOMAIN_COUNT.getName().equals(attributeName)) { result.set(metrics.getErrorTrustedDomainCount()); } else if (METRICS_EXPIRED_ASSERTIONS_COUNT.getName().equals(attributeName)) { result.set(metrics.getExpiredAssertionsCount()); } else if (METRICS_LOGIN_COMPLETE_COUNT.getName().equals(attributeName)) { result.set(metrics.getLoginCompleteCount()); } else if (METRICS_LOGIN_INIT_COUNT.getName().equals(attributeName)) { result.set(metrics.getLoginInitCount()); } } @Override protected ServiceName createServiceName(String name) { return IdentityProviderService.createServiceName(name); } }