Package com.tw.go.plugin.model
Class GitConfig
- java.lang.Object
-
- com.tw.go.plugin.model.GitConfig
-
public class GitConfig extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetBranch()StringgetEffectiveBranch()StringgetEffectiveUrl()StringgetPassword()StringgetRemoteBranch()Optional<ShallowClone>getShallowClone()StringgetUrl()StringgetUrlWithCredentials()StringgetUsername()booleanhasCredentials()inthashCode()booleanisNoCheckout()booleanisRecursiveSubModuleUpdate()booleanisRemoteUrl()booleanisShallowClone()booleanisSubModule()voidsetBranch(String branch)voidsetNoCheckout(boolean noCheckout)voidsetPassword(String password)voidsetRecursiveSubModuleUpdate(boolean recursiveSubModuleUpdate)voidsetShallowClone(ShallowClone shallowClone)voidsetSubModule(boolean subModule)voidsetUrl(String url)voidsetUsername(String username)
-
-
-
Method Detail
-
isRemoteUrl
public boolean isRemoteUrl()
-
hasCredentials
public boolean hasCredentials()
-
getEffectiveUrl
public String getEffectiveUrl()
-
getUrlWithCredentials
public String getUrlWithCredentials()
-
getUrl
public String getUrl()
-
setUrl
public void setUrl(String url)
-
getUsername
public String getUsername()
-
setUsername
public void setUsername(String username)
-
getPassword
public String getPassword()
-
setPassword
public void setPassword(String password)
-
getRemoteBranch
public String getRemoteBranch()
-
getEffectiveBranch
public String getEffectiveBranch()
-
getBranch
public String getBranch()
-
setBranch
public void setBranch(String branch)
-
isSubModule
public boolean isSubModule()
-
setSubModule
public void setSubModule(boolean subModule)
-
isRecursiveSubModuleUpdate
public boolean isRecursiveSubModuleUpdate()
-
setRecursiveSubModuleUpdate
public void setRecursiveSubModuleUpdate(boolean recursiveSubModuleUpdate)
-
isShallowClone
public boolean isShallowClone()
-
getShallowClone
public Optional<ShallowClone> getShallowClone()
-
setShallowClone
public void setShallowClone(ShallowClone shallowClone)
-
isNoCheckout
public boolean isNoCheckout()
-
setNoCheckout
public void setNoCheckout(boolean noCheckout)
-
-