Package org.jitterbit.integration.debug.client.file

Examples of org.jitterbit.integration.debug.client.file.DefaultDataFilesInfo


            KongaGuid guid = KongaGuid.createGuid(wsFilesInfo.getGuid());
            for (WsDataFileInfo wsFile : wsFilesInfo.getDataFiles()) {
                OperationId opId = new OperationId(wsFile.getOperationGuid());
                TransformationId txId = new TransformationId(wsFile.getTransformationGuid());
                Key key = new Key(opId, txId);
                DefaultDataFilesInfo collection = map.get(key);
                if (collection == null) {
                    collection = new DefaultDataFilesInfo(guid, serverInfo, opId, txId);
                    map.put(key, collection);
                }
                DataFileType type = DataFileType.values()[wsFile.getType()];
                DataFileInfo file = new DataFileInfo(type, wsFile.getNumberOfChunks());
                collection.addFileInfo(file);
            }
            return map;
        }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.debug.client.file.DefaultDataFilesInfo

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.