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 ProjectApi
public ProjectApi create(ProjectInput in)
create
in interface ProjectApi
public ProjectInfo get()
get
in interface ProjectApi
public String description()
description
in interface ProjectApi
public ProjectAccessInfo access()
access
in interface ProjectApi
public ConfigInfo config()
config
in interface ProjectApi
public ConfigInfo config(ConfigInput in)
config
in interface ProjectApi
public ProjectAccessInfo access(ProjectAccessInput p)
access
in interface ProjectApi
public void description(DescriptionInput in)
description
in interface ProjectApi
public ProjectApi.ListRefsRequest<BranchInfo> branches()
branches
in interface ProjectApi
public ProjectApi.ListRefsRequest<TagInfo> tags()
tags
in interface ProjectApi
public List<ProjectInfo> children()
children
in interface ProjectApi
public List<ProjectInfo> children(boolean recursive)
children
in interface ProjectApi
public ChildProjectApi child(String name)
child
in interface ProjectApi
public BranchApi branch(String ref)
ProjectApi
Note: 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 ProjectApi
ref
- branch name, with or without "refs/heads/" prefix.public TagApi tag(String ref)
ProjectApi
tag
in interface ProjectApi
ref
- tag name, with or without "refs/tags/" prefix.public void deleteBranches(DeleteBranchesInput in)
deleteBranches
in interface ProjectApi
public void deleteTags(DeleteTagsInput in)
deleteTags
in interface ProjectApi