- java.lang.Object
-
- org.eclipse.jgit.api.SubmoduleDeinitResult
-
public class SubmoduleDeinitResult extends Object
The result of a submodule deinit command for a particular path- Since:
- 4.10
-
-
Constructor Summary
Constructors Constructor Description SubmoduleDeinitResult(String path, SubmoduleDeinitCommand.SubmoduleDeinitStatus status)Constructor for SubmoduleDeinitResult
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetPath()Get the path of the submoduleSubmoduleDeinitCommand.SubmoduleDeinitStatusgetStatus()Get the status of the commandvoidsetPath(String path)Set the path of the submodulevoidsetStatus(SubmoduleDeinitCommand.SubmoduleDeinitStatus status)Set the status of the command
-
-
-
Constructor Detail
-
SubmoduleDeinitResult
public SubmoduleDeinitResult(String path, SubmoduleDeinitCommand.SubmoduleDeinitStatus status)
Constructor for SubmoduleDeinitResult- Parameters:
path- path of the submodulestatus-
-
-
Method Detail
-
getPath
public String getPath()
Get the path of the submodule- Returns:
- path of the submodule
-
setPath
public void setPath(String path)
Set the path of the submodule- Parameters:
path- path of the submodule
-
getStatus
public SubmoduleDeinitCommand.SubmoduleDeinitStatus getStatus()
Get the status of the command- Returns:
- the status of the command
-
setStatus
public void setStatus(SubmoduleDeinitCommand.SubmoduleDeinitStatus status)
Set the status of the command- Parameters:
status- the status of the command
-
-