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

com.jdroid.javaweb.context.ServerGitContext Maven / Gradle / Ivy

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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy