本文整理汇总了Java中com.tw.go.plugin.util.JSONUtils.toJSON方法的典型用法代码示例。如果您正苦于以下问题:Java JSONUtils.toJSON方法的具体用法?Java JSONUtils.toJSON怎么用?Java JSONUtils.toJSON使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.tw.go.plugin.util.JSONUtils
的用法示例。
在下文中一共展示了JSONUtils.toJSON方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: renderJSON
import com.tw.go.plugin.util.JSONUtils; //导入方法依赖的package包/类
private GoPluginApiResponse renderJSON(final int responseCode, final Map<String, String> responseHeaders, Object response) {
final String json = response == null ? null : JSONUtils.toJSON(response);
return new GoPluginApiResponse() {
@Override
public int responseCode() {
return responseCode;
}
@Override
public Map<String, String> responseHeaders() {
return responseHeaders;
}
@Override
public String responseBody() {
return json;
}
};
}
示例2: testSettingsRequest
import com.tw.go.plugin.util.JSONUtils; //导入方法依赖的package包/类
private static GoApiRequest testSettingsRequest() {
final Map<String, Object> requestMap = new HashMap<String, Object>();
requestMap.put("plugin-id", "email.notifier");
final String responseBody = JSONUtils.toJSON(requestMap);
return new GoApiRequest() {
@Override
public String api() {
return "go.processor.plugin-settings.get";
}
@Override
public String apiVersion() {
return "1.0";
}
@Override
public GoPluginIdentifier pluginIdentifier() {
return new GoPluginIdentifier("notification", Collections.singletonList("1.0"));
}
@Override
public Map<String, String> requestParameters() {
return null;
}
@Override
public Map<String, String> requestHeaders() {
return null;
}
@Override
public String requestBody() {
return responseBody;
}
};
}