io.apiman.gateway.engine.beans.Api.setParsePayload()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(3.1k)|赞(0)|评价(0)|浏览(92)

本文整理了Java中io.apiman.gateway.engine.beans.Api.setParsePayload()方法的一些代码示例,展示了Api.setParsePayload()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Api.setParsePayload()方法的具体详情如下:
包路径:io.apiman.gateway.engine.beans.Api
类名称:Api
方法名:setParsePayload

Api.setParsePayload介绍

暂无

代码示例

代码示例来源:origin: apiman/apiman

private void processData() {
  if (configs.size() == 0) {
    log.warn("File loaded into registry was empty. No entities created.");
    return;
  }
  try {
    // Naive version initially.
    for (Auth3ScaleBean bean : configs) {
      // Reflects the remote data structure.
      BackendConfiguration config = bean.getThreescaleConfig().getProxyConfig().getBackendConfig();
      Api api = new Api();
      api.setApiId(config.getSystemName());
      api.setOrganizationId(defaultOrgName);
      api.setEndpoint(config.getProxy().getApiBackend());
      api.setEndpointContentType("text/json"); // don't think there is an equivalent of this in 3scale
      api.setEndpointType("rest"); //don't think there is an equivalent of this in 3scale
      api.setParsePayload(false); // can let user override this?
      api.setPublicAPI(true); // is there an equivalent of this?
      api.setVersion(defaultVersion); // don't think this is relevant anymore
      setPolicies(api, bean);
      log.debug("Processing: {0}", config);
      log.debug("Creating API: {0}", api);
      apis.add(api);
    }
    dataProcessed = true;
    checkQueue();
  } catch (DecodeException e) {
    failAll(e);
  }
}

代码示例来源:origin: io.apiman/apiman-gateway-engine-3scale

private void processData() {
  if (configs.size() == 0) {
    log.warn("File loaded into registry was empty. No entities created.");
    return;
  }
  try {
    // Naive version initially.
    for (Auth3ScaleBean bean : configs) {
      // Reflects the remote data structure.
      BackendConfiguration config = bean.getThreescaleConfig().getProxyConfig().getBackendConfig();
      Api api = new Api();
      api.setApiId(config.getSystemName());
      api.setOrganizationId(defaultOrgName);
      api.setEndpoint(config.getProxy().getApiBackend());
      api.setEndpointContentType("text/json"); // don't think there is an equivalent of this in 3scale
      api.setEndpointType("rest"); //don't think there is an equivalent of this in 3scale
      api.setParsePayload(false); // can let user override this?
      api.setPublicAPI(true); // is there an equivalent of this?
      api.setVersion(defaultVersion); // don't think this is relevant anymore
      setPolicies(api, bean);
      log.debug("Processing: {0}", config);
      log.debug("Creating API: {0}", api);
      apis.add(api);
    }
    dataProcessed = true;
    checkQueue();
  } catch (DecodeException e) {
    failAll(e);
  }
}

代码示例来源:origin: apiman/apiman

gatewayApi.setVersion(versionBean.getVersion());
gatewayApi.setPublicAPI(versionBean.isPublicAPI());
gatewayApi.setParsePayload(versionBean.isParsePayload());
if (versionBean.isPublicAPI()) {
  List<Policy> policiesToPublish = new ArrayList<>();

代码示例来源:origin: apiman/apiman

gatewayApi.setVersion(versionBean.getVersion());
gatewayApi.setPublicAPI(versionBean.isPublicAPI());
gatewayApi.setParsePayload(versionBean.isParsePayload());
boolean hasTx = false;
try {

代码示例来源:origin: io.apiman/apiman-manager-api-rest-impl

gatewayApi.setVersion(versionBean.getVersion());
gatewayApi.setPublicAPI(versionBean.isPublicAPI());
gatewayApi.setParsePayload(versionBean.isParsePayload());
boolean hasTx = false;
try {

相关文章