public static class ProjectApi.NotImplemented extends Object implements ProjectApi
ProjectApi.ListRefsRequest<T extends RefInfo>, ProjectApi.NotImplemented| Constructor and Description |
|---|
NotImplemented() |
| Modifier and Type | Method and Description |
|---|---|
ProjectAccessInfo |
access() |
ProjectAccessInfo |
access(ProjectAccessInput p) |
BranchApi |
branch(String ref)
Look up a branch by refname.
|
ProjectApi.ListRefsRequest<BranchInfo> |
branches() |
ChildProjectApi |
child(String name) |
List<ProjectInfo> |
children() |
List<ProjectInfo> |
children(boolean recursive) |
ConfigInfo |
config() |
ConfigInfo |
config(ConfigInput in) |
ProjectApi |
create() |
ProjectApi |
create(ProjectInput in) |
void |
deleteBranches(DeleteBranchesInput in) |
void |
deleteTags(DeleteTagsInput in) |
String |
description() |
void |
description(DescriptionInput in) |
ProjectInfo |
get() |
TagApi |
tag(String ref)
Look up a tag by refname.
|
ProjectApi.ListRefsRequest<TagInfo> |
tags() |
public ProjectApi create()
create in interface ProjectApipublic ProjectApi create(ProjectInput in)
create in interface ProjectApipublic ProjectInfo get()
get in interface ProjectApipublic String description()
description in interface ProjectApipublic ProjectAccessInfo access()
access in interface ProjectApipublic ConfigInfo config()
config in interface ProjectApipublic ConfigInfo config(ConfigInput in)
config in interface ProjectApipublic ProjectAccessInfo access(ProjectAccessInput p)
access in interface ProjectApipublic void description(DescriptionInput in)
description in interface ProjectApipublic ProjectApi.ListRefsRequest<BranchInfo> branches()
branches in interface ProjectApipublic ProjectApi.ListRefsRequest<TagInfo> tags()
tags in interface ProjectApipublic List<ProjectInfo> children()
children in interface ProjectApipublic List<ProjectInfo> children(boolean recursive)
children in interface ProjectApipublic ChildProjectApi child(String name)
child in interface ProjectApipublic BranchApi branch(String ref)
ProjectApiNote: This method eagerly reads the branch. Methods that mutate the branch
do not necessarily re-read the branch. Therefore, calling a getter method on an instance after
calling a mutation method on that same instance is not guaranteed to reflect the mutation. It
is not recommended to store references to BranchApi instances.
branch in interface ProjectApiref - branch name, with or without "refs/heads/" prefix.public TagApi tag(String ref)
ProjectApitag in interface ProjectApiref - tag name, with or without "refs/tags/" prefix.public void deleteBranches(DeleteBranchesInput in)
deleteBranches in interface ProjectApipublic void deleteTags(DeleteTagsInput in)
deleteTags in interface ProjectApi