Package uk.gov.nationalarchives.droid.report.planets.domain

Examples of uk.gov.nationalarchives.droid.report.planets.domain.FormatItemType


    private ByFormatType getGroupByPuid(ObjectFactory objFactory)
        throws InterruptedException {
        ByFormatType byFormatType = objFactory.createByFormatType();
        List<FormatItemType> formatItemList = byFormatType.getFormatItem();
        for (GroupByPuidSizeAndCountRow byPuid : planetsData.getGroupByPuid()) {
            FormatItemType formatItemType = objFactory.createFormatItemType();
            formatItemType.setFormatName(byPuid.getFormatName());
            formatItemType.setFormatVersion(byPuid.getFormatVersion());
            formatItemType.setMIME(byPuid.getMimeType());
            formatItemType.setNumFiles(byPuid.getCount());
            formatItemType.setPUID(byPuid.getPuid());
            formatItemType.setTotalFileSize(byPuid.getSize());
            if (!"NULL".equals(byPuid.getPuid())) {
                formatItemList.add(formatItemType);
            }
        }
        if (observer != null) {
View Full Code Here

TOP

Related Classes of uk.gov.nationalarchives.droid.report.planets.domain.FormatItemType

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.