Package org.jitterbit.integration.client.project.jitterpack

Examples of org.jitterbit.integration.client.project.jitterpack.DefaultJitterPackDescriptor


        String projectName = readProjectName(data);
        String comment = readComment(data);
        Date created = readCreatedDate(data);
        VersionInfo versionInfo = readVersionInfo(data);
        boolean readOnly = isReadOnly(data);
        return new DefaultJitterPackDescriptor(projectName, versionInfo, folderName, created, comment, encrypted, readOnly);
    }
View Full Code Here


    protected abstract Version getRequiredVersion();
   
    private JitterPackDescriptor createDescriptorForWriting(final ManagedProject project, final String comment) {
        VersionInfo versionInfo = createVersionInfo(project);
        ExportParameters packParams = ParamsSanityCheck.ensureForPacking(params);
        return new DefaultJitterPackDescriptor(project.getProject().getName(), versionInfo,
                        project.getLocation().getName(), new Date(), comment, packParams.getPassword() != null,
                        packParams.isPackedProjectReadOnly());
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.project.jitterpack.DefaultJitterPackDescriptor

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.