Package net.sourceforge.cruisecontrol.monitoring

Examples of net.sourceforge.cruisecontrol.monitoring.JmxProject.updateValues()


 
    private void updateProjectBeans(SortedList sortedProjects) {
        for( int index = 0, max = sortedProjects.size();index < max;index++ ) {
            JmxProject currentProject = (JmxProject) sortedProjects.get( index );
            try {
              currentProject.updateValues();
            }
            catch (Exception e) {
              String errorMessage = "Error updating values for " + currentProject.getProjectName();
        LOG.error( errorMessage, e );
      }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.