public class ProjectsCollection extends java.lang.Object implements RestCollection<TopLevelResource,ProjectResource>, AcceptsCreate<TopLevelResource>
| Modifier and Type | Method and Description |
|---|---|
CreateProject |
create(TopLevelResource parent,
IdString name)
Handle creation of a child resource.
|
RestView<TopLevelResource> |
list()
Create a view to list the contents of the collection.
|
ProjectResource |
parse(java.lang.String id)
Parses a project ID from a request body and returns the project.
|
ProjectResource |
parse(java.lang.String id,
boolean checkAccess)
Parses a project ID from a request body and returns the project.
|
ProjectResource |
parse(TopLevelResource parent,
IdString id)
Parse a path component into a resource handle.
|
DynamicMap<RestView<ProjectResource>> |
views()
Get the views that support this collection.
|
public RestView<TopLevelResource> list()
RestCollectionThe returned view should accept the parent type to scope the search, and may want to take a "q" parameter option to narrow the results.
list in interface RestCollection<TopLevelResource,ProjectResource>public ProjectResource parse(TopLevelResource parent, IdString id) throws ResourceNotFoundException, java.io.IOException, PermissionBackendException
RestCollectionparse in interface RestCollection<TopLevelResource,ProjectResource>parent - the handle to the collection.id - string identifier supplied by the client. In a URL such as /changes/1234/abandon this string is "1234".ResourceNotFoundException - the object does not exist, or the caller is not permitted to
know if the resource exists.java.io.IOExceptionPermissionBackendExceptionpublic ProjectResource parse(java.lang.String id) throws UnprocessableEntityException, java.io.IOException, PermissionBackendException
id - ID of the project, can be a project nameUnprocessableEntityException - thrown if the project ID cannot be resolved or if the
project is not visible to the calling userjava.io.IOException - thrown when there is an error.PermissionBackendExceptionpublic ProjectResource parse(java.lang.String id, boolean checkAccess) throws UnprocessableEntityException, java.io.IOException, PermissionBackendException
id - ID of the project, can be a project namecheckAccess - if true, check the project is accessible by the current userUnprocessableEntityException - thrown if the project ID cannot be resolved or if the
project is not visible to the calling user and checkVisibility is true.java.io.IOException - thrown when there is an error.PermissionBackendExceptionpublic DynamicMap<RestView<ProjectResource>> views()
RestCollectionWithin a resource the views are accessed as RESOURCE/plugin~view.
views in interface RestCollection<TopLevelResource,ProjectResource>public CreateProject create(TopLevelResource parent, IdString name)
AcceptsCreatecreate in interface AcceptsCreate<TopLevelResource>parent - parent collection handle.name - id of the resource being created.