com.contentstack.sdk.EntryResultCallBack Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java Show documentation
Show all versions of java Show documentation
Java SDK for Contentstack Content Delivery API
package com.contentstack.sdk;
public abstract class EntryResultCallBack implements ResultCallBack {
public abstract void onCompletion(ResponseType responseType, Error error);
void onRequestFinish(ResponseType responseType) {
onCompletion(responseType, null);
}
@Override
public void onRequestFail(ResponseType responseType, Error error) {
onCompletion(responseType, error);
}
}