com.vonage.client.voice.ncco.NotifyAction Maven / Gradle / Ivy
/*
* Copyright 2024 Vonage
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.vonage.client.voice.ncco;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.vonage.client.JsonableBaseObject;
import java.util.Arrays;
import java.util.Collection;
import java.util.Map;
/**
* An NCCO notify action which allows for custom events to be sent to a configured webhook.
*/
public class NotifyAction extends JsonableBaseObject implements Action {
private static final String ACTION = "notify";
private Map payload;
private Collection eventUrl;
private EventMethod eventMethod;
NotifyAction() {}
private NotifyAction(Builder builder) {
payload = builder.payload;
eventUrl = builder.eventUrl;
eventMethod = builder.eventMethod;
}
@Override
public String getAction() {
return ACTION;
}
@JsonProperty("payload")
public Map getPayload() {
return payload;
}
@JsonProperty("eventUrl")
public Collection getEventUrl() {
return eventUrl;
}
@JsonProperty("eventMethod")
public EventMethod getEventMethod() {
return eventMethod;
}
public static Builder builder(Map payload, Collection eventUrl) {
return new Builder(payload, eventUrl);
}
public static Builder builder(Map payload, String... eventUrl) {
return builder(payload, Arrays.asList(eventUrl));
}
public static class Builder {
private Map payload;
private Collection eventUrl;
private EventMethod eventMethod;
/**
* @param payload A Map of String keys and ? values that will be converted to JSON and sent to your event URL.
* @param eventUrl The URL to send events to.
*/
private Builder(Map payload, Collection eventUrl) {
this.payload = payload;
this.eventUrl = eventUrl;
}
/**
* @param payload A Map of String keys and ? values that will be converted to JSON and sent to your event URL.
*
* @return This builder.
*/
public Builder payload(Map payload) {
this.payload = payload;
return this;
}
/**
* @param eventUrl The URL to send events to.
*
* @return This builder.
*/
public Builder eventUrl(Collection eventUrl) {
this.eventUrl = eventUrl;
return this;
}
/**
* @param eventUrl The URL to send events to.
*
* @return This builder.
*/
public Builder eventUrl(String... eventUrl) {
return eventUrl(Arrays.asList(eventUrl));
}
/**
* @param eventMethod The HTTP method to use when sending the payload to your event url.
*
* @return This builder.
*/
public Builder eventMethod(EventMethod eventMethod) {
this.eventMethod = eventMethod;
return this;
}
/**
* Builds the NotifyAction.
*
* @return A new NotifyAction object from the stored builder options.
*/
public NotifyAction build() {
return new NotifyAction(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy