Back to project page android-tao-rest-data-processor.
The source code is released under:
/******************************************************************************* * Copyright (c) 2014 Alexandr Tsvetkov. * All rights reserved. This program and the accompanying materials * are mad...
If you think the Android project android-tao-rest-data-processor listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/******************************************************************************* * Copyright (c) 2014 Alexandr Tsvetkov. * All rights reserved. This program and the accompanying materials * are made available under the terms of the GNU Lesser General Public License * which accompanies this distribution, and is available at * http://www.gnu.org/licenses/lgpl.html *//w w w . jav a2 s . c o m * Contributors: * Alexandr Tsvetkov - initial API and implementation * * Project: * TAO Data Processor * * License agreement: * * 1. This code is published AS IS. Author is not responsible for any damage that can be * caused by any application that uses this code. * 2. Author does not give a garantee, that this code is error free. * 3. This code can be used in NON-COMMERCIAL applications AS IS without any special * permission from author. * 4. This code can be modified without any special permission from author IF AND ONLY IF * this license agreement will remain unchanged. ******************************************************************************/ package ua.at.tsvetkov.data_processor.requests; import java.io.IOException; import java.io.InputStream; import java.util.HashMap; import org.apache.http.client.methods.HttpDelete; import org.apache.http.params.HttpConnectionParams; import org.apache.http.params.HttpParams; import org.apache.http.protocol.HttpContext; import ua.at.tsvetkov.data_processor.Scheme; /** * Delete Request builder. * * @author lordtao */ public class DeleteRequest extends WebRequest { /** * Return new instance of DeleteRequest. * * @return */ public static DeleteRequest newInstance() { return new DeleteRequest(); } @Override public InputStream getInputStream() throws IOException { if (!isBuild()) throw new IllegalArgumentException(REQUEST_IS_NOT_BUILDED); startTime = System.currentTimeMillis(); HttpConnectionParams.setConnectionTimeout(httpParameters, configuration.getTimeout()); HttpConnectionParams.setSoTimeout(httpParameters, configuration.getTimeout()); HttpDelete httpPost = new HttpDelete(toString()); httpPost.setParams(httpParameters); printToLogUrl(); return getResponce(httpPost); } // ******************************************************************************** /** * Directly assign full URL string. All other URL methods will be ignored * * @param url */ public DeleteRequest setUrl(String url) { this.url = url; return this; } /** * Set custom HttpParams. * * @return */ public DeleteRequest setHttpParameters(HttpParams httpParameters) { this.httpParameters = httpParameters; return this; } /** * Set custom HttpContext. * * @return */ public DeleteRequest setHttpContext(HttpContext httpContext) { this.httpContext = httpContext; return this; } /** * Set encoding * * @param encoding */ public DeleteRequest setEncoding(String encoding) { this.encoding = encoding; return this; } /** * Sets the scheme "http://". * * @return */ public DeleteRequest setSchemeHttp() { this.scheme = Scheme.HTTP.toString(); return this; } /** * Sets the scheme "https://". * * @return */ public DeleteRequest setSchemeHttps() { this.scheme = Scheme.HTTPS.toString(); return this; } /** * Sets the scheme "file://". * * @return */ public DeleteRequest setSchemeFile() { this.scheme = Scheme.HTTPS.toString(); return this; } /** * Sets your scheme. * * @param scheme * @return */ public DeleteRequest setScheme(String scheme) { this.scheme = scheme; return this; } /** * Set User Info. * * @param username * @param password * @return */ public DeleteRequest setUserInfo(String username, String password) { this.username = username; this.password = password; return this; } /** * Set host. * * @param host * @return */ public DeleteRequest setHost(String host) { this.host = host; return this; } /** * Set port. * * @param port * @return */ public DeleteRequest setPort(String port) { this.port = port; return this; } /** * Set path * * @param path * @return */ public DeleteRequest setPath(String path) { this.path = path; return this; } public DeleteRequest setLogTag(String tag) { this.tag = tag; return this; } /** * Add to query GET parameter. * * @param key * @param value * @return */ public DeleteRequest addGetParam(String key, String value) { if (queries == null) queries = new HashMap<String, String>(); queries.put(key, value); return this; } /** * Add to query GET parameter. * * @param key * @param value * @return */ public DeleteRequest addGetParam(String key, int value) { if (queries == null) queries = new HashMap<String, String>(); queries.put(key, String.valueOf(value)); return this; } /** * Add to query GET parameter. * * @param key * @param value * @return */ public DeleteRequest addGetParam(String key, long value) { if (queries == null) queries = new HashMap<String, String>(); queries.put(key, String.valueOf(value)); return this; } /** * Add to query GET parameter. * * @param key * @param value * @return */ public DeleteRequest addGetParam(String key, float value) { if (queries == null) queries = new HashMap<String, String>(); queries.put(key, String.valueOf(value)); return this; } /** * Add to query GET parameter. * * @param key * @param value * @return */ public DeleteRequest addGetParam(String key, double value) { if (queries == null) queries = new HashMap<String, String>(); queries.put(key, String.valueOf(value)); return this; } /** * Add fragment. * * @param fragment * @return */ public DeleteRequest addFragment(String fragment) { this.fragment = fragment; return this; } /** * Save received data to cache file. Skip it if exist. * * @param cacheFileName */ public DeleteRequest saveToCacheFile(String cacheFileName) { this.cacheFileName = cacheFileName; this.isRewriteFile = false; return this; } /** * Save received data to cashe file. Rewrite it if exist. * * @param cacheFileName */ public DeleteRequest rewriteCashedFile(String cacheFileName) { this.cacheFileName = cacheFileName; this.isRewriteFile = true; return this; } }