com.arm.mbed.cloud.sdk.connect.model.Webhook Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mbed-cloud-sdk Show documentation
Show all versions of mbed-cloud-sdk Show documentation
The Pelion Cloud SDK (formerly known as Mbed Cloud SDK) provides a simplified interface to the Pelion Cloud APIs by exposing functionality using conventions and paradigms familiar to Java developers.
package com.arm.mbed.cloud.sdk.connect.model;
import java.net.URL;
import java.util.LinkedHashMap;
import java.util.Map;
import com.arm.mbed.cloud.sdk.annotations.Preamble;
import com.arm.mbed.cloud.sdk.annotations.Required;
import com.arm.mbed.cloud.sdk.common.SdkModel;
@Preamble(description = "Webhook")
public class Webhook implements SdkModel {
/**
* Serialisation Id.
*/
private static final long serialVersionUID = 6075770197049142567L;
/**
* The URL to which the notifications must be sent.
*/
@Required
private URL url;
/**
* Headers (key/value) that must be sent with the request.
*/
Map headers;
/**
* Constructor.
*
* @param url
* URL
* @param headers
* headers (key/Value)
*/
public Webhook(URL url, Map headers) {
super();
setUrl(url);
setHeaders(headers);
}
/**
* Constructor.
*/
public Webhook() {
this(null, null);
}
/**
* Constructor.
*
* @param url
* URL
*
*/
public Webhook(URL url) {
this();
setUrl(url);
}
/**
* Gets the URL.
*
* @return the url
*/
public URL getUrl() {
return url;
}
/**
* Sets the URL.
*
* @param url
* the url to set
*/
@Required
public void setUrl(URL url) {
this.url = url;
}
/**
* Gets HTTP headers.
*
* @return the headers
*/
public Map getHeaders() {
return headers;
}
/**
* Sets HTTP headers.
*
* @param headers
* the headers to set
*/
public void setHeaders(Map headers) {
this.headers = headers;
}
/**
* Adds an HTTP header.
*
* @param key
* header
* @param value
* header value
*/
public void addHeader(String key, String value) {
if (key == null || value == null) {
return;
}
if (headers == null) {
headers = new LinkedHashMap<>();
}
headers.put(key, value);
}
/**
* Gets a clone.
*
* @return a clone.
*
* @see java.lang.Object#clone()
*/
@Override
public Webhook clone() throws CloneNotSupportedException {
return new Webhook(url, headers);
}
/**
* Determines whether all required fields have been set and therefore if the model instance is valid.
*
* @return true if instance is valid. False otherwise.
*/
@Override
public boolean isValid() {
return url != null;
}
/*
* (non-Javadoc)
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
return "Webhook [url=" + url + ", headers=" + headers + "]";
}
}