org.opensearch.alerting.destination.response.BaseResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of notification Show documentation
Show all versions of notification Show documentation
Open Distro for Elasticsearch Notification
The newest version!
/*
* Copyright OpenSearch Contributors
* SPDX-License-Identifier: Apache-2.0
*/
package org.opensearch.alerting.destination.response;
/**
* This class holds the generic response attributes
*/
public abstract class BaseResponse {
protected Integer statusCode;
BaseResponse(final Integer statusCode) {
if (statusCode == null) {
throw new IllegalArgumentException("status code is invalid");
}
this.statusCode = statusCode;
}
public int getStatusCode() {
return statusCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy