Package org.jitterbit.integration.data

Examples of org.jitterbit.integration.data.ProjectNameValidator.validateName()


    private String getNewProjectName(File dir) throws CommandException {
        try {
            String projectName = dir.getName();
            ProjectNameValidator validator = new ProjectNameValidator();
            validator.validateName(projectName);
            return projectName;
        } catch (IllegalNameException ex) {
            throw new CommandException(ex.getMessage());
        }
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.