Package com.netflix.priam.backup

Examples of com.netflix.priam.backup.AbstractBackupPath.parseRemote()


    {
        List<AbstractBackupPath> temp = Lists.newArrayList();
        for (S3ObjectSummary summary : objectListing.getObjectSummaries())
        {
            AbstractBackupPath path = pathProvider.get();
            path.parseRemote(summary.getKey());
            logger.debug("New key " + summary.getKey() + " path = " + path.getRemotePath() + " " + start + " end: " + till + " my " + path.getTime() );
            if ((path.getTime().after(start) && path.getTime().before(till)) || path.getTime().equals(start)){
                temp.add(path);
                logger.debug("Added key " + summary.getKey() );
            }
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.