Package ariba.util.core.PerformanceStateCore

Examples of ariba.util.core.PerformanceStateCore.EventDetail


            // higher severity already
            return severity;
        }
        // check the type specific values
        for (Iterator i = events.iterator(); i.hasNext(); ) {
            EventDetail ev = (EventDetail)i.next();
            int eventSeverity = checkValue(ev._count, ev._type, stats, sink);
            if (eventSeverity > severity) {
                severity = eventSeverity;
                if (severity == PerformanceCheck.SeverityError) {
                    // we've reached the highest severity so no point in keep going
View Full Code Here

TOP

Related Classes of ariba.util.core.PerformanceStateCore.EventDetail

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.