Package org.jitterbit.integration.data.location

Examples of org.jitterbit.integration.data.location.TemporaryStorageLocation


            tt.addEntry("Path:", ftp.getHostPath());
        } else if (loc instanceof FileShareLocation) {
            FileShareLocation fs = (FileShareLocation) loc;
            tt.addEntry("Path:", fs.getPath());
        } else if (loc instanceof TemporaryStorageLocation) {
            TemporaryStorageLocation ts = (TemporaryStorageLocation) loc;
            tt.addEntry("Path:", ts.getPath());
        }
        tt.addEntry(st == SourceTarget.Source ? "File filter:" : "Filename:", loc.getFileFilter().getFilter());
    }
View Full Code Here


        return (TemporaryStorageLocation) super.getDisplayedObject();
    }
   
    @Override
    public void apply() {
        TemporaryStorageLocation loc = getDisplayedObject();
        loc.setPath(pathField.getValue().trim());
        fileLocationPanel.apply(loc);
        updatePathCache(loc);
    }
View Full Code Here

        }
    }

    @Override
    public void reset() {
        TemporaryStorageLocation loc = getDisplayedObject();
        fileLocationPanel.reset(loc);
        updateFields(loc);
    }
View Full Code Here

            case FileShare:
                FileShareLocation fileShare = (FileShareLocation) dl;
                return KList.fromItems(fileShare.getLogin(), fileShare.getPath(),
                                fileShare.getFileFilter().getFilter(), fileShare.getRenameFileTo().getFileName());
            case TemporaryStorage:
                TemporaryStorageLocation tempStore = (TemporaryStorageLocation) dl;
                return KList.fromItems(tempStore.getPath(), tempStore.getFileFilter().getFilter(),
                                tempStore.getRenameFileTo().getFileName());
            case FTP:
                FtpLocation ftp = (FtpLocation) dl;
                return KList.fromItems(ftp.getLogin(), ftp.getHost(), ftp.getHostPath(),
                                ftp.getFileFilter().getFilter(), ftp.getRenameFileTo().getFileName());
            case HTTP:
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.location.TemporaryStorageLocation

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.