Package org.rhq.plugins.apache.util

Examples of org.rhq.plugins.apache.util.ConfigurationTimestamp


        Set<File> files = new HashSet<File>(paths.size());
        for (String p : paths) {
            files.add(new File(p));
        }

        return new ConfigurationTimestamp(files);
    }
View Full Code Here


    /**
     * @return the index of the virtual host that identifies it in SNMP
     * @throws Exception on SNMP error
     */
    private int getWwwServiceIndex() {
        ConfigurationTimestamp currentTimestamp =
            resourceContext.getParentResourceComponent().getConfigurationTimestamp();
        if (!lastConfigurationTimeStamp.equals(currentTimestamp)) {
            snmpWwwServiceIndex = -1;
            //don't go through this configuration again even if we fail further below.. we'd fail again.
            lastConfigurationTimeStamp = currentTimestamp;
View Full Code Here

TOP

Related Classes of org.rhq.plugins.apache.util.ConfigurationTimestamp

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.