當前位置: 首頁>>代碼示例>>Java>>正文


Java HttpMethod.PUT屬性代碼示例

本文整理匯總了Java中javax.ws.rs.HttpMethod.PUT屬性的典型用法代碼示例。如果您正苦於以下問題:Java HttpMethod.PUT屬性的具體用法?Java HttpMethod.PUT怎麽用?Java HttpMethod.PUT使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在javax.ws.rs.HttpMethod的用法示例。


在下文中一共展示了HttpMethod.PUT屬性的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: pullPaymentFile

private void pullPaymentFile(String requestURL, String charset, long desGroupId, long dossierId,
		String authStringEnc, File file, String confirmNote, String paymentMethod, String confirmPayload,
		ServiceContext serviceContext) {

	try {
		MultipartUtility multipart = new MultipartUtility(requestURL, charset, desGroupId, authStringEnc,
				HttpMethod.PUT);
		// TODO; check logic here, if ref fileId in SERVER equal CLIENT

		multipart.addFilePart("file", file);
		multipart.addFormField("confirmNote", confirmNote);
		multipart.addFormField("paymentMethod", paymentMethod);
		multipart.addFormField("confirmPayload", confirmPayload);

		JSONObject object = JSONFactoryUtil.createJSONObject();

		List<String> response = multipart.finish();

		// resetDossier(desGroupId, dossierRef, false, serviceContext);

	} catch (Exception e) {
		_log.error(e);
	}

}
 
開發者ID:VietOpenCPS,項目名稱:opencps-v2,代碼行數:25,代碼來源:DossierPullScheduler.java

示例2: pullPaymentFileNoAttach

private void pullPaymentFileNoAttach(String requestURL, String charset, long desGroupId, long dossierId,
		String authStringEnc, String confirmNote, String paymentMethod, String confirmPayload,
		ServiceContext serviceContext) {

	try {

		MultipartUtility multipart = new MultipartUtility(requestURL, charset, desGroupId, authStringEnc,
				HttpMethod.PUT);
		// TODO; check logic here, if ref fileId in SERVER equal CLIENT

		multipart.addFormField("confirmNote", confirmNote);
		multipart.addFormField("paymentMethod", paymentMethod);
		multipart.addFormField("confirmPayload", confirmPayload);

		JSONObject object = JSONFactoryUtil.createJSONObject();

		List<String> response = multipart.finish();

		// resetDossier(desGroupId, dossierRef, false, serviceContext);

	} catch (Exception e) {
		_log.error(e);
	}

}
 
開發者ID:VietOpenCPS,項目名稱:opencps-v2,代碼行數:25,代碼來源:DossierPullScheduler.java

示例3: put

/**
 * PUTメソッドとしてRequestオブジェクトを生成する.
 * @param url URL
 * @return req DcRequestオブジェクト
 */
public static PersoniumRequest put(String url) {
    PersoniumRequest req = new PersoniumRequest(url);
    req.method = HttpMethod.PUT;
    return req;
}
 
開發者ID:personium,項目名稱:personium-core,代碼行數:10,代碼來源:PersoniumRequest.java


注:本文中的javax.ws.rs.HttpMethod.PUT屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。