Package net.sourceforge.processdash.tool.bridge

Examples of net.sourceforge.processdash.tool.bridge.ResourceFilter


    private boolean syncTimestampIsRecent() {
        try {
            String timestamp = getMetadata(SYNC_TIMESTAMP);
            if (timestamp == null)
                return false;
            ResourceFilter filter = ResourceFilterFactory
                    .getForRequest(Collections.singletonMap(
                        ResourceFilterFactory.LAST_MOD_PARAM, timestamp));
            ResourceCollectionInfo changedFiles = new ResourceListing(
                    client.localCollection, filter);
            return changedFiles.listResourceNames().isEmpty();
View Full Code Here

TOP

Related Classes of net.sourceforge.processdash.tool.bridge.ResourceFilter

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.