All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jelastic.api.environment.interfaces.IVcs Maven / Gradle / Ivy

The newest version!
package com.jelastic.api.environment.interfaces;

/**
 * Created by alexey on 6/3/17.
 */
public interface IVcs {

    enum VcsType {
        SVN, GIT
    }

    T update(String projectName);
    T createProject(VcsType type, String projectName, String url, String branchName, String login, String password);
    T deleteProject(String projectName);
    T getProject(String projectName);
    T editProject(VcsType type, String oldProjectName, String newProjectName, String url, String branchName, String login, String password);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy