com.contentstack.sdk.SingleQueryResultCallback 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 SingleQueryResultCallback implements ResultCallBack {
public abstract void onCompletion(ResponseType responseType, Entry entry, Error error);
void onRequestFinish(ResponseType responseType, Entry entry) {
onCompletion(responseType, entry, null);
}
@Override
public void onRequestFail(ResponseType responseType, Error error) {
onCompletion(responseType, null, error);
}
}