Package org.eclipse.jgit.api
Class SubmoduleDeinitResult
- java.lang.Object
-
- org.eclipse.jgit.api.SubmoduleDeinitResult
-
public class SubmoduleDeinitResult extends java.lang.Object
The result of a submodule deinit command for a particular path- Since:
- 4.10
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
path
private SubmoduleDeinitCommand.SubmoduleDeinitStatus
status
-
Constructor Summary
Constructors Constructor Description SubmoduleDeinitResult(java.lang.String path, SubmoduleDeinitCommand.SubmoduleDeinitStatus status)
Constructor for SubmoduleDeinitResult
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getPath()
Get the path of the submoduleSubmoduleDeinitCommand.SubmoduleDeinitStatus
getStatus()
Get the status of the commandvoid
setPath(java.lang.String path)
Set the path of the submodulevoid
setStatus(SubmoduleDeinitCommand.SubmoduleDeinitStatus status)
Set the status of the command
-
-
-
Field Detail
-
path
private java.lang.String path
-
status
private SubmoduleDeinitCommand.SubmoduleDeinitStatus status
-
-
Constructor Detail
-
SubmoduleDeinitResult
public SubmoduleDeinitResult(java.lang.String path, SubmoduleDeinitCommand.SubmoduleDeinitStatus status)
Constructor for SubmoduleDeinitResult- Parameters:
path
- path of the submodulestatus
-
-
-
Method Detail
-
getPath
public java.lang.String getPath()
Get the path of the submodule- Returns:
- path of the submodule
-
setPath
public void setPath(java.lang.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
-
-