本文整理汇总了Java中org.apache.wink.client.ClientResponse.getStatusCode方法的典型用法代码示例。如果您正苦于以下问题:Java ClientResponse.getStatusCode方法的具体用法?Java ClientResponse.getStatusCode怎么用?Java ClientResponse.getStatusCode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.wink.client.ClientResponse
的用法示例。
在下文中一共展示了ClientResponse.getStatusCode方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: Asset
import org.apache.wink.client.ClientResponse; //导入方法依赖的package包/类
@Test(groups = {"wso2.greg", "wso2.greg.es"}, description = "Create Defined Asset(soapservice) without required field in Publisher")
public void createAssetWithoutRequiredField() throws JSONException, IOException {
Map<String, String> queryParamMap = new HashMap<>();
queryParamMap.put("type", "soapservice");
String soapTemplate = readFile(resourcePath + "json" + File.separator + "soapservice-sample.json");
assetName = "bbb";
String dataBody = String.format(soapTemplate, assetName, "bbb", "1.0.0", null);
JSONObject jsonObject = new JSONObject(dataBody);
jsonObject.remove("overview_version");
ClientResponse response =
genericRestClient.geneticRestRequestPost(publisherUrl + "/assets",
MediaType.APPLICATION_JSON,
MediaType.APPLICATION_JSON, jsonObject.toString()
, queryParamMap, headerMap, cookieHeader);
JSONObject resObject = new JSONObject(response.getEntity(String.class));
if (response.getStatusCode() == 201) {
assetId = (String)resObject.get("id");
}
assertTrue((response.getStatusCode() == 500),
"Wrong status code ,Expected 500 Internal Server Error ,Received " +
response.getStatusCode()
);
}
示例2: createCustomAssetWithoutRequiredField
import org.apache.wink.client.ClientResponse; //导入方法依赖的package包/类
@Test(groups = {"wso2.greg", "wso2.greg.es"}, description = "Create Custom Asset without required field in Publisher")
public void createCustomAssetWithoutRequiredField() throws IOException, JSONException {
Map<String, String> queryParamMap = new HashMap<>();
queryParamMap.put("type", "evlc");
String evlcTemplate = readFile(resourcePath + "json" + File.separator + "evlc-sample.json");
assetName = "fff";
String dataBody = String.format(evlcTemplate, assetName, "16/11/2015", "PG", "male", "07772223334", "none", "none");
JSONObject jsonObject = new JSONObject(dataBody);
jsonObject.remove("details_date");
ClientResponse response =
genericRestClient.geneticRestRequestPost(publisherUrl + "/assets",
MediaType.APPLICATION_JSON,
MediaType.APPLICATION_JSON, jsonObject.toString()
, queryParamMap, headerMap, cookieHeader);
JSONObject resObject = new JSONObject(response.getEntity(String.class));
if (response.getStatusCode() == 201) {
customAssetId = (String) resObject.get("id");
}
assertTrue((response.getStatusCode() == 400),
"Wrong status code ,Expected 400 Bad Request ,Received " +
response.getStatusCode()
);
}
示例3: delete
import org.apache.wink.client.ClientResponse; //导入方法依赖的package包/类
public void delete() throws Exception {
System.out.println("delete "+url+" "+usernametoken);
//Thread.dumpStack();
Resource resource = createResource();
ClientResponse clientResponse = resource.delete();
if(clientResponse.getStatusCode() != HttpStatus.OK.getCode()){
throw new Exception(clientResponse.getMessage());
}
}
示例4: put
import org.apache.wink.client.ClientResponse; //导入方法依赖的package包/类
public void put(Object payload) throws Exception {
System.out.println("put "+url);
//Thread.dumpStack();
Resource resource = createResource();
ClientResponse clientResponse = resource.put(payload);
if(clientResponse.getStatusCode() != HttpStatus.OK.getCode()){
throw new Exception(clientResponse.getMessage());
}
}
示例5: post
import org.apache.wink.client.ClientResponse; //导入方法依赖的package包/类
public XMLWrapper post(Object payload) throws Exception {
System.out.println("post "+url);
//Thread.dumpStack();
Resource resource = createResource();
ClientResponse clientResponse = resource.post(payload);
if(clientResponse.getStatusCode() != HttpStatus.OK.getCode()){
throw new Exception(clientResponse.getMessage());
}
return new XMLWrapper(clientResponse.getEntity(String.class));
}
示例6: get
import org.apache.wink.client.ClientResponse; //导入方法依赖的package包/类
public XMLWrapper get() throws Exception {
System.out.println("get "+url);
//Thread.dumpStack();
Resource resource = createResource();
ClientResponse clientResponse = resource.get();
if(clientResponse.getStatusCode() != HttpStatus.OK.getCode()){
throw new Exception(clientResponse.getMessage());
}
return new XMLWrapper(clientResponse.getEntity(String.class));
}
示例7: deleteAssetById
import org.apache.wink.client.ClientResponse; //导入方法依赖的package包/类
/**
* Delete Assets By ID
*
* @param publisherUrl publisher url
* @param genericRestClient generic rest client object
* @param cookieHeader session cookies header
* @param id asset ID
* @param queryParamMap query ParamMap
* @return response
*/
public boolean deleteAssetById(String publisherUrl, GenericRestClient genericRestClient,
String cookieHeader, String id,
Map<String, String> queryParamMap) {
ClientResponse clientResponse = this.getAssetById(publisherUrl, genericRestClient, cookieHeader, id, queryParamMap);
if (clientResponse.getStatusCode() != 404) {
genericRestClient.geneticRestRequestDelete(publisherUrl + "/assets/" + id,
MediaType.APPLICATION_JSON, MediaType.APPLICATION_JSON, queryParamMap, headerMap, cookieHeader);
}
return true;
}
示例8: deleteAssetById
import org.apache.wink.client.ClientResponse; //导入方法依赖的package包/类
public boolean deleteAssetById(String id, Map<String, String> queryParamMap) {
ClientResponse clientResponse = this.getAssetById(id, queryParamMap);
if (clientResponse.getStatusCode() != 404) {
genericRestClient.geneticRestRequestDelete(publisherUrl + "/assets/" + id,
MediaType.APPLICATION_JSON, MediaType.APPLICATION_JSON, queryParamMap, headerMap, cookieHeader);
}
return true;
}
示例9: connect
import org.apache.wink.client.ClientResponse; //导入方法依赖的package包/类
/**
* link http
*
* @param server
* @param port
* @param url
* @param method
* @param data
* @return
*/
public RetRpc connect(String server, int port, String url, String method,
String data) {
RetRpc ret = new RetRpc();
String address;
if (!url.startsWith("http")) {
address = "http://" + server + ":" + port + url;
} else {
address = url;
}
// create the rest client instance
RestClient client = new RestClient();
// create the resource instance to interact with
Resource resource = client.resource(address);
// issue the request
ClientResponse response = null;
try {
if (ACTION_POST.equals(method)) {
response = resource.accept("text/plain").post(data);
} else if (ACTION_PUT.equals(method)) {
response = resource.accept("text/plain").put(data);
} else if (ACTION_DELETE.equals(method)) {
response = resource.accept("text/plain").delete();
} else {
response = resource.accept("text/plain").get();
}
} catch (Exception ex) {
ex.printStackTrace();
ret.setStatusCode(500);
ret.setMsg(ex.getMessage());
ret.setStatus("connected failed .");
return ret;
}
int code = response.getStatusCode();
String msg = response.getMessage();
ret.setStatusCode(code);
ret.setStatus(response.getStatusType().getReasonPhrase());
ret.setMsg(msg);
// deserialize response
ret.setContent(response.getEntity(String.class));
return ret;
}
示例10: connect
import org.apache.wink.client.ClientResponse; //导入方法依赖的package包/类
/**
* link http
*
* @param server
* @param port
* @param url
* @param method
* @param data
* @return
*/
public RetRpc connect(String server, int port, String url, String method,
String data, String protocal, String userName, String password) {
RetRpc ret = new RetRpc();
String address;
address = protocal + "://" + server + ":" + port + url;
ClientConfig config = new ClientConfig();
config.connectTimeout(600000);
if (null != userName && userName.length() > 0 && null != password
&& password.length() > 0) {
OpsAuthSecurityHandler opsAuthHandler = new OpsAuthSecurityHandler();
opsAuthHandler.setUserName(userName);
opsAuthHandler.setPassword(password);
config.handlers(opsAuthHandler);
}
// create the rest client instance
OpsRestClient client = new OpsRestClient(config);
// create the resource instance to interact with
Resource resource = client.resource(address);
// issue the request
ClientResponse response = null;
try {
if (ACTION_POST.equals(method)) {
response = resource.post(data);
} else if (ACTION_PUT.equals(method)) {
response = resource.put(data);
} else if (ACTION_DELETE.equals(method)) {
response = resource.delete();
} else {
response = resource.get();
}
} catch (Exception ex) {
ex.printStackTrace();
ret.setStatusCode(500);
ret.setMsg(ex.getMessage());
ret.setStatus("connected failed .");
return ret;
}
int code = response.getStatusCode();
String msg = response.getMessage();
ret.setStatusCode(code);
ret.setMsg(msg);
// deserialize response
ret.setContent(response.getEntity(String.class));
return ret;
}