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

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


            FileProfileType fileProfileType = objFactory
                    .createFileProfileType();
            JAXBElement<FileProfileType> fileProfile = objFactory
                    .createFileProfile(fileProfileType);

            PathsProcessedType pathProcessedType = getPathProcessed(objFactory);

            ByFormatType byFormatType = getGroupByPuid(objFactory);

            ByYearType byYearType = getGroupByYear(objFactory);
View Full Code Here


     * @return
     * @throws InterruptedException
     */
    private PathsProcessedType getPathProcessed(ObjectFactory objFactory)
        throws InterruptedException {
        PathsProcessedType pathProcessedType = objFactory
                .createPathsProcessedType();

        List<String> pathItemsList = pathProcessedType.getPathItem();

        for (String item : planetsData.getTopLevelItems()) {
            pathItemsList.add(item);
        }
        if (observer != null) {
View Full Code Here

TOP

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

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.