com.dg.libs.rest.parsers.NoResponseParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-rest Show documentation
Show all versions of android-rest Show documentation
This is a library for android for Making RestFul Requests
package com.dg.libs.rest.parsers;
import java.io.InputStream;
public class NoResponseParser implements HttpResponseParser {
public static final String TAG = NoResponseParser.class.getSimpleName();
@Override
public Void parse(InputStream responseStream) throws Exception {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy