com.jdroid.javaweb.context.ServerGitContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdroid-java-webapp Show documentation
Show all versions of jdroid-java-webapp Show documentation
Jdroid library for Java Web apps
The newest version!
package com.jdroid.javaweb.context;
import com.jdroid.java.context.GitContext;
public class ServerGitContext implements GitContext {
private String sha;
private String branch;
public String getSha() {
return sha;
}
public String getBranch() {
return branch;
}
public void setSha(String sha) {
this.sha = sha;
}
public void setBranch(String branch) {
this.branch = branch;
}
}