Class CheckMergeability
- java.lang.Object
-
- com.google.gerrit.server.restapi.project.CheckMergeability
-
- All Implemented Interfaces:
RestReadView<BranchResource>,RestView<BranchResource>
public class CheckMergeability extends Object implements RestReadView<BranchResource>
Check the mergeability at current branch for a git object references expression.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Response<MergeableInfo>apply(BranchResource resource)Process the view operation by reading from the resource.voidsetSource(String source)voidsetStrategy(String strategy)
-
-
-
Method Detail
-
setSource
public void setSource(String source)
-
setStrategy
public void setStrategy(String strategy)
-
apply
public Response<MergeableInfo> apply(BranchResource resource) throws IOException, BadRequestException, ResourceNotFoundException, ResourceConflictException
Description copied from interface:RestReadViewProcess the view operation by reading from the resource.The value of the returned response is automatically converted to JSON unless it is a
BinaryResult.The returned response defines the status code that is returned to the client. For RestReadViews this is usually
200 OK, but other 2XX or 3XX status codes are also possible (e.g.Response.Redirectcan be returned for302 Found).Throwing a subclass of
RestApiExceptionresults in a 4XX response to the client. For any other exception the client will get a500 Internal Server Errorresponse.- Specified by:
applyin interfaceRestReadView<BranchResource>- Parameters:
resource- resource to read- Returns:
- response to return to the client
- Throws:
BadRequestException- the request was incorrectly specified and cannot be handled by this view.ResourceConflictException- the resource state does not permit this view to make the changes at this time.IOExceptionResourceNotFoundException
-
-