Package org.syncany.database

Examples of org.syncany.database.FileContent$FileChecksum


      }
      else if (elementPath.equalsIgnoreCase("/database/databaseVersions/databaseVersion/fileContents/fileContent")) {
        String checksumStr = attributes.getValue("checksum");
        long size = Long.parseLong(attributes.getValue("size"));

        fileContent = new FileContent();
        fileContent.setChecksum(FileChecksum.parseFileChecksum(checksumStr));
        fileContent.setSize(size);
      }
      else if (elementPath.equalsIgnoreCase("/database/databaseVersions/databaseVersion/fileContents/fileContent/chunkRefs/chunkRef")) {
        String chunkChecksumStr = attributes.getValue("ref");
View Full Code Here

TOP

Related Classes of org.syncany.database.FileContent$FileChecksum

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.