Skip to content

Instantly share code, notes, and snippets.

@zmarkan
Created August 7, 2015 08:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zmarkan/cea4ad169c873e9f65ba to your computer and use it in GitHub Desktop.
Save zmarkan/cea4ad169c873e9f65ba to your computer and use it in GitHub Desktop.
public interface HTTPHelperWrapper {
//your methods go here
void getRequest(Callback callback);
}
public class HTTPHelperWrapperImpl overrides HTTPHelperWrapper {
@Override
public void getRequest(Callback callback){
HTTPHelper.getRequest(callback);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment