All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.minlia.iot.config.AbstractApiRequestConfiguration Maven / Gradle / Ivy

package com.minlia.iot.config;

import com.minlia.iot.scope.ApiRequestMode;

/**
 * Created by will on 9/19/17.
 * 包含请求模式的请求配置
 */
public abstract class AbstractApiRequestConfiguration {

  private ApiRequestMode apiRequestMode;

  public ApiRequestMode getApiRequestMode() {
    return apiRequestMode;
  }

  public void setApiRequestMode(ApiRequestMode apiRequestMode) {
    this.apiRequestMode = apiRequestMode;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy