Class HttpNotifier
- java.lang.Object
-
- hudson.model.AbstractDescribableImpl<InputNotifier>
-
- io.jenkins.plugins.pipeline.input.notifiers.InputNotifier
-
- io.jenkins.plugins.pipeline.input.notifiers.HttpNotifier
-
- All Implemented Interfaces:
ExtensionPoint
,Describable<InputNotifier>
,Serializable
,Comparable<InputNotifier>
public class HttpNotifier extends InputNotifier
- Author:
- jasper
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
HttpNotifier.DescriptorImpl
-
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
-
Field Summary
-
Fields inherited from class io.jenkins.plugins.pipeline.input.notifiers.InputNotifier
disabled
-
-
Constructor Summary
Constructors Constructor Description HttpNotifier()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getHttpEndpoint()
boolean
getIgnoreSSL()
Gets whether to ignore SSL verify.void
notifyInputNotification(InputNotificationEvent event)
Send notification after input started, approved, abortedvoid
setHttpEndpoint(String httpEndpoint)
void
setIgnoreSSL(boolean ignoreSSL)
-
Methods inherited from class io.jenkins.plugins.pipeline.input.notifiers.InputNotifier
compareTo, getDescriptor, isDisabled, setDisabled
-
-
-
-
Method Detail
-
getHttpEndpoint
public String getHttpEndpoint()
-
setHttpEndpoint
@DataBoundSetter public void setHttpEndpoint(String httpEndpoint)
-
getIgnoreSSL
public boolean getIgnoreSSL()
Gets whether to ignore SSL verify.- Returns:
- true if ignore SSL is enabled
-
setIgnoreSSL
@DataBoundSetter public void setIgnoreSSL(boolean ignoreSSL)
-
notifyInputNotification
public void notifyInputNotification(InputNotificationEvent event)
Description copied from class:InputNotifier
Send notification after input started, approved, aborted- Specified by:
notifyInputNotification
in classInputNotifier
- Parameters:
event
- input event
-
-