com.ibm.cp4waiops.connectors.sdk.BridgeBadRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connectors-sdk Show documentation
Show all versions of connectors-sdk Show documentation
A developer SDK for creating connectors for CP4WAIOps.
package com.ibm.cp4waiops.connectors.sdk;
/**
* BridgeBadRequest is the data returned by the server for a bad request
*/
public class BridgeBadRequest {
private String id;
private String code;
private String title;
private String detail;
public String getDetail() {
return detail;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public void setDetail(String detail) {
this.detail = detail;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy