com.atlassian.bitbucket.scm.signed.SignedObjectCallback |
Describes a callback for receiving information about signed objects.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Called after the signature information for the final requested object has been provided.
| |||||||||||
Called when no object was found in the repository for the requested
objectId . | |||||||||||
Called when the requested object was found and contained a signature.
| |||||||||||
Called before the signature information for the first requested object is provided.
| |||||||||||
Called when the requested object was found, but was not signed.
|
Called after the signature information for the final requested object has been provided.
Note: If there no objects were requested, this method may be called immediately after
onStart(SignedObjectsContext)
without any calls to any of the other callback methods.
summary | summarizes the request |
---|
IOException | for implementations which perform I/O |
---|
Called when no object was found in the repository for the requested objectId
.
objectId | the requested object ID |
---|
IOException | for implementations which perform I/O |
---|
Called when the requested object was found and contained a signature.
type | the type of object for which the signature and signed content is returned |
---|---|
objectId | the requested object ID |
signature | the signature |
signedContent | the object content that was signed |
IOException | for implementations which perform I/O |
---|
Called before the signature information for the first requested object is provided.
context | provides details about the request for signature information is being streamed |
---|
IOException | for implementations which perform I/O |
---|
Called when the requested object was found, but was not signed.
type | the type of object that was found if it's signable, otherwise null |
---|---|
objectId | the requested object ID |
IOException | for implementations which perform I/O |
---|