本文整理匯總了Java中org.scribe.model.Verb類的典型用法代碼示例。如果您正苦於以下問題:Java Verb類的具體用法?Java Verb怎麽用?Java Verb使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
Verb類屬於org.scribe.model包,在下文中一共展示了Verb類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: send
import org.scribe.model.Verb; //導入依賴的package包/類
private String send(Verb verb, String params) throws Exception {
String url = apiUrl + ((params != null) ? params : "");
OAuthRequest request = new OAuthRequest(verb, url);
request.addQuerystringParameter(OAuthConstants.ACCESS_TOKEN, apiAccessToken);
// For more details on the “Bearer” token refer to http://tools.ietf.org/html/draft-ietf-oauth-v2-bearer-23
StringBuilder sb = new StringBuilder();
sb.append("Bearer ");
sb.append(apiAccessToken);
request.addHeader("Authorization", sb.toString());
if (LOG.isDebugEnabled()) {
LOG.debug("Yammer request url: {}", request.getCompleteUrl());
}
Response response = request.send();
if (response.isSuccessful()) {
return response.getBody();
} else {
throw new Exception(String.format("Failed to poll %s. Got response code %s and body: %s", getApiUrl(), response.getCode(), response.getBody()));
}
}
示例2: afterFinalUriConstructed
import org.scribe.model.Verb; //導入依賴的package包/類
@Override
protected String afterFinalUriConstructed(HttpRequestBase forMethod, String finalUri, Map<String, ? extends Object> parameters)
{
long start = System.currentTimeMillis();
//
// generate oauth 1.0 params for 2LO - use scribe so far for that ...
//
OAuthService service = createOauthService();
OAuthRequest request = new OAuthRequest(Verb.valueOf(forMethod.getMethod()), finalUri);
addParametersForSigning(request, parameters);
service.signRequest(new EmptyToken(), request);
Map<String, String> oauthParams = request.getOauthParameters();
//
//
log.debug("2LO signing took [{}] ms ", System.currentTimeMillis() - start);
return finalUri + paramsToString(oauthParams, finalUri.indexOf("?") != -1);
}
示例3: addParametersForSigning
import org.scribe.model.Verb; //導入依賴的package包/類
protected void addParametersForSigning(final OAuthRequest request, final Map<String, ? extends Object> parameters)
{
if (parameters == null)
{
return;
}
Verb method = request.getVerb();
if (method == Verb.POST || method == Verb.PUT)
{
processParams(parameters, new ParameterProcessor()
{
@Override
public void process(String key, String value)
{
request.addBodyParameter(key, value);
}
});
}
}
示例4: onConnectionCreated
import org.scribe.model.Verb; //導入依賴的package包/類
@Override
protected void onConnectionCreated(HttpClient client, HttpRequestBase method, Map<String, ? extends Object> parameters)
throws IOException
{
long start = System.currentTimeMillis();
//
// generate oauth 1.0 params for 3LO - use scribe so far for that ...
//
OAuthService service = createOauthService();
OAuthRequest request = new OAuthRequest(Verb.valueOf(method.getMethod()), method.getURI().toString());
addParametersForSigning(request, parameters);
service.signRequest(generateAccessTokenObject(accessTokenWithSecret), request);
String header = authHeaderCreator.extract(request);
method.addHeader(OAuthConstants.HEADER, header);
log.debug("3LO signing took [{}] ms ", System.currentTimeMillis() - start);
}
示例5: getClusters
import org.scribe.model.Verb; //導入依賴的package包/類
/**
* 獲取當前用戶所有集群信息
*
* @return
* @throws Fit2CloudException
*/
public List<Cluster> getClusters() throws Fit2CloudException {
OAuthRequest request = new OAuthRequest(Verb.GET, restApiEndpoint + "/clusters");
Token accessToken = new Token("", "");
service.signRequest(accessToken, request);
Response response = request.send();
int code = response.getCode();
String responseString = response.getBody();
if (code == 200) {
Type listType = new TypeToken<ArrayList<Cluster>>() {
}.getType();
return new GsonBuilder().create().fromJson(responseString, listType);
} else {
throw new Fit2CloudException(responseString);
}
}
示例6: getClusterRoles
import org.scribe.model.Verb; //導入依賴的package包/類
/**
* 獲取指定集群下所有虛機組信息
*
* @param clusterId
* 集群ID
* @return
* @throws Fit2CloudException
*/
public List<ClusterRole> getClusterRoles(long clusterId) throws Fit2CloudException {
OAuthRequest request = new OAuthRequest(Verb.GET, restApiEndpoint + "/cluster/" + clusterId + "/roles");
Token accessToken = new Token("", "");
service.signRequest(accessToken, request);
Response response = request.send();
int code = response.getCode();
String responseString = response.getBody();
if (code == 200) {
Type listType = new TypeToken<ArrayList<ClusterRole>>() {
}.getType();
return new GsonBuilder().create().fromJson(responseString, listType);
} else {
throw new Fit2CloudException(responseString);
}
}
示例7: executeScript
import org.scribe.model.Verb; //導入依賴的package包/類
/**
* 在指定虛機上執行指定腳本
*
* @param serverId
* 虛機ID
* @param scriptContent
* 腳本內容
* @return 返回執行腳本事件ID, 可根據此ID獲取返回的所有執行日誌
* @throws Fit2CloudException
*/
public long executeScript(long serverId, String scriptContent) throws Fit2CloudException {
OAuthRequest request = new OAuthRequest(Verb.POST, executeScriptInServerUrl);
request.addBodyParameter("serverId", String.valueOf(serverId));
request.addBodyParameter("scriptContent", scriptContent);
request.setCharset("UTF-8");
Token accessToken = new Token("", "");
service.signRequest(accessToken, request);
Response response = request.send();
int code = response.getCode();
String responseString = response.getBody();
if (code == 200) {
return Long.parseLong(responseString);
} else {
throw new Fit2CloudException(responseString);
}
}
示例8: getLoggingsByEventId
import org.scribe.model.Verb; //導入依賴的package包/類
/**
* 獲取事件返回的所有日誌信息(如執行腳本事件)
*
* @param eventId
* 事件ID
* @return
* @throws Fit2CloudException
*/
public List<Logging> getLoggingsByEventId(long eventId) throws Fit2CloudException {
OAuthRequest request = new OAuthRequest(Verb.GET, getLoggingUrl + eventId);
Token accessToken = new Token("", "");
service.signRequest(accessToken, request);
Response response = request.send();
int code = response.getCode();
String responseString = response.getBody();
if (code == 200) {
Type listType = new TypeToken<ArrayList<Logging>>() {
}.getType();
return new GsonBuilder().create().fromJson(responseString, listType);
} else {
throw new Fit2CloudException(responseString);
}
}
示例9: launchServer
import org.scribe.model.Verb; //導入依賴的package包/類
/**
* 創建虛機
*
* @param clusterId
* 虛機所在的集群
* @param clusterRoleId
* 虛機所在的虛機組
* @param launchConfigurationId
* 創建虛機所使用的模板
* @return 創建後的虛機信息
* @throws Fit2CloudException
*/
public Server launchServer(long clusterId, long clusterRoleId, long launchConfigurationId)
throws Fit2CloudException {
OAuthRequest request = new OAuthRequest(Verb.POST, restApiEndpoint + "/launchserver/cluster/" + clusterId
+ "/clusterrole/" + clusterRoleId + "?launchConfigurationId=" + launchConfigurationId);
Token accessToken = new Token("", "");
service.signRequest(accessToken, request);
Response response = request.send();
int code = response.getCode();
String responseString = response.getBody();
if (code == 200) {
return new GsonBuilder().create().fromJson(responseString, Server.class);
} else {
throw new Fit2CloudException(responseString);
}
}
示例10: launchServerAsync
import org.scribe.model.Verb; //導入依賴的package包/類
/**
* 創建虛機. 此接口將立刻返回虛機ID,而後台將異步創建虛機. 之後通過返回的虛機信息中的ID來查詢完整的虛機信息
*
* @param clusterId
* 虛機所在的集群
* @param clusterRoleId
* 虛機所在的虛機組
* @param launchConfigurationId
* 創建虛機所使用的模板
* @return
* @throws Fit2CloudException
*/
public Server launchServerAsync(long clusterId, long clusterRoleId, long launchConfigurationId)
throws Fit2CloudException {
OAuthRequest request = new OAuthRequest(Verb.POST, restApiEndpoint + "/launchserver/async/cluster/" + clusterId
+ "/clusterrole/" + clusterRoleId + "?launchConfigurationId=" + launchConfigurationId);
Token accessToken = new Token("", "");
service.signRequest(accessToken, request);
Response response = request.send();
int code = response.getCode();
String responseString = response.getBody();
if (code == 200) {
return new GsonBuilder().create().fromJson(responseString, Server.class);
} else {
throw new Fit2CloudException(responseString);
}
}
示例11: getClusterParams
import org.scribe.model.Verb; //導入依賴的package包/類
/**
* 獲取指定集群的集群參數
*
* @param clusterId
* 集群ID
* @return
* @throws Fit2CloudException
*/
public List<ClusterParam> getClusterParams(long clusterId) throws Fit2CloudException {
OAuthRequest request = new OAuthRequest(Verb.GET, restApiEndpoint + "/cluster/" + clusterId + "/params");
Token accessToken = new Token("", "");
service.signRequest(accessToken, request);
Response response = request.send();
int code = response.getCode();
String responseString = response.getBody();
if (code == 200) {
Type listType = new TypeToken<ArrayList<ClusterParam>>() {
}.getType();
return new GsonBuilder().create().fromJson(responseString, listType);
} else {
throw new Fit2CloudException(responseString);
}
}
示例12: setClusterParam
import org.scribe.model.Verb; //導入依賴的package包/類
/**
* 設置集群參數, 若之前無此參數,則添加; 若有則替換
*
* @param clusterId
* 集群ID
* @param name
* 集群參數名稱
* @param value
* 集群參數值
* @return
* @throws Fit2CloudException
*/
public boolean setClusterParam(long clusterId, String name, String value) throws Fit2CloudException {
OAuthRequest request = new OAuthRequest(Verb.POST, restApiEndpoint + "/cluster/" + clusterId + "/param");
request.addBodyParameter("name", name);
request.addBodyParameter("value", value);
request.setCharset("UTF-8");
Token accessToken = new Token("", "");
service.signRequest(accessToken, request);
Response response = request.send();
int code = response.getCode();
String responseString = response.getBody();
if (code == 200) {
return "true".equals(responseString);
} else {
throw new Fit2CloudException(response.getBody());
}
}
示例13: addScript
import org.scribe.model.Verb; //導入依賴的package包/類
/**
* 添加腳本
*
* @param name
* 腳本名稱
* @param description
* 腳本描述
* @param scriptText
* 腳本內容
* @return 腳本ID
* @throws Fit2CloudException
*/
public Long addScript(String name, String description, String scriptText) throws Fit2CloudException {
OAuthRequest request = new OAuthRequest(Verb.POST, restApiEndpoint + "/script/add");
request.addBodyParameter("name", name);
request.addBodyParameter("description", description);
request.addBodyParameter("scriptText", scriptText);
request.setCharset("UTF-8");
Token accessToken = new Token("", "");
service.signRequest(accessToken, request);
Response response = request.send();
int code = response.getCode();
String responseString = response.getBody();
if (code == 200) {
return Long.parseLong(responseString);
} else {
throw new Fit2CloudException(response.getBody());
}
}
示例14: editScript
import org.scribe.model.Verb; //導入依賴的package包/類
/**
* 編輯指定腳本
*
* @param scriptId
* 腳本ID
* @param description
* 腳本描述
* @param scriptText
* 腳本內容
* @return
* @throws Fit2CloudException
*/
public boolean editScript(long scriptId, String description, String scriptText) throws Fit2CloudException {
OAuthRequest request = new OAuthRequest(Verb.POST, restApiEndpoint + "/script/" + scriptId + "/update");
request.addBodyParameter("description", description);
request.addBodyParameter("scriptText", scriptText);
request.setCharset("UTF-8");
Token accessToken = new Token("", "");
service.signRequest(accessToken, request);
Response response = request.send();
int code = response.getCode();
String responseString = response.getBody();
if (code == 200) {
return "true".equals(responseString);
} else {
throw new Fit2CloudException(response.getBody());
}
}
示例15: saveTag
import org.scribe.model.Verb; //導入依賴的package包/類
/**
* 給指定虛機設置標簽. 若無則新增標簽; 若有則替換
*
* @param serverId
* 虛機ID
* @param tagName
* 標簽名稱
* @param tagValue
* 標簽值
* @return
* @throws Fit2CloudException
*/
public Tag saveTag(Long serverId, String tagName, String tagValue) throws Fit2CloudException {
OAuthRequest request = new OAuthRequest(Verb.POST, restApiEndpoint + "/tags/save");
if (serverId != null && serverId.intValue() > 0) {
request.addBodyParameter("serverId", String.valueOf(serverId));
}
if (tagName != null && tagName.trim().length() > 0) {
request.addBodyParameter("tagName", tagName.trim());
}
if (tagValue != null && tagValue.trim().length() > 0) {
request.addBodyParameter("tagValue", tagValue.trim());
}
request.setCharset("UTF-8");
Token accessToken = new Token("", "");
service.signRequest(accessToken, request);
Response response = request.send();
int code = response.getCode();
String responseString = response.getBody();
if (code == 200) {
return new GsonBuilder().create().fromJson(responseString, Tag.class);
} else {
throw new Fit2CloudException(response.getBody());
}
}