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

com.contentstack.sdk.ContentstackPlugin Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
package com.contentstack.sdk;

import okhttp3.Request;

public interface ContentstackPlugin {

    default Request onRequest(
            Stack stack,
            Request request) {
        return request;
    }

    default retrofit2.Response onResponse(
            Stack stack,
            Request request,
            retrofit2.Response response) {
        return response;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy