Package sonia.scm.repository.api
Interface HookMessageProvider
public interface HookMessageProvider
Send messages back to scm client during hook execution.
- Since:
- 1.33
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Send error message back to scm client.void
sendMessage
(String message) Send message back tp scm client.
-
Method Details
-
sendError
Send error message back to scm client.- Parameters:
message
- error message to send
-
sendMessage
Send message back tp scm client. If the message is a notification about an error, please usesendError(String)
instead.- Parameters:
message
- error message to send
-