Package org.evolizer.metrics.store.exceptions

Examples of org.evolizer.metrics.store.exceptions.NoSuitableStrategyFoundException


            throws NoSuitableStrategyFoundException {
        IMetricCalculationStrategy strategy =
                sRegisteredStrategies.get(new CompositeKey<String, Class<?>>(metricIdentifier, entity.getClass()));

        if (strategy == null) {
            throw new NoSuitableStrategyFoundException("Could not find a suitable " + metricIdentifier
                    + "-strategy for " + entity.getClass());
        }

        return strategy.calculateValue(entity, session); // TODO storage-template method in an abstract class that
        // implements IMetricCalculationStrategy?
View Full Code Here

TOP

Related Classes of org.evolizer.metrics.store.exceptions.NoSuitableStrategyFoundException

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.