All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.kiota.ResponseHandlerOption Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package com.microsoft.kiota;

import jakarta.annotation.Nonnull;
import jakarta.annotation.Nullable;

/** Request option that can be used to provide a callback and handle the raw response */
public class ResponseHandlerOption implements RequestOption {
    /** Creates a new instance of the option */
    public ResponseHandlerOption() {
        // default constructor
    }

    private ResponseHandler responseHandler;

    /**
     * Gets the response handler callback
     * @return the response handler callback
     */
    @Nullable public ResponseHandler getResponseHandler() {
        return responseHandler;
    }

    /**
     * Sets the response handler callback
     * @param value the response handler callback
     */
    public void setResponseHandler(@Nullable final ResponseHandler value) {
        responseHandler = value;
    }

    /** {@inheritDoc} */
    @Override
    @SuppressWarnings("unchecked")
    @Nonnull public  Class getType() {
        return (Class) ResponseHandlerOption.class;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy