Class VcsRepositoryDto
- java.lang.Object
-
- jetbrains.buildServer.pipeline.dto.VcsRepositoryDto
-
public class VcsRepositoryDto extends Object
-
-
Constructor Summary
Constructors Constructor Description VcsRepositoryDto(String repositoryName, String httpCloneUrl, String sshCloneUrl, String htmlUrl, String defaultBranch, String description, String language, boolean isPrivate, Boolean isFork)
VcsRepositoryDto(ExternalRepository r)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getDefaultBranch()
String
getDescription()
String
getHtmlUrl()
String
getHttpCloneUrl()
String
getLanguage()
String
getRepositoryName()
String
getSshCloneUrl()
int
hashCode()
Boolean
isFork()
boolean
isPrivate()
String
toString()
-
-
-
Constructor Detail
-
VcsRepositoryDto
public VcsRepositoryDto(@NotNull String repositoryName, @Nullable String httpCloneUrl, @Nullable String sshCloneUrl, @Nullable String htmlUrl, @Nullable String defaultBranch, @Nullable String description, @Nullable String language, boolean isPrivate, @Nullable Boolean isFork)
-
VcsRepositoryDto
public VcsRepositoryDto(@NotNull ExternalRepository r)
-
-
Method Detail
-
getRepositoryName
@NotNull public String getRepositoryName()
-
getHttpCloneUrl
@Nullable public String getHttpCloneUrl()
-
getSshCloneUrl
@Nullable public String getSshCloneUrl()
-
getHtmlUrl
@Nullable public String getHtmlUrl()
-
getDefaultBranch
@Nullable public String getDefaultBranch()
-
getDescription
@Nullable public String getDescription()
-
getLanguage
@Nullable public String getLanguage()
-
isPrivate
public boolean isPrivate()
-
isFork
@Nullable public Boolean isFork()
-
-