当前位置: 首页>>代码示例>>Java>>正文


Java ApiKeyAuth类代码示例

本文整理汇总了Java中io.swagger.client.auth.ApiKeyAuth的典型用法代码示例。如果您正苦于以下问题:Java ApiKeyAuth类的具体用法?Java ApiKeyAuth怎么用?Java ApiKeyAuth使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


ApiKeyAuth类属于io.swagger.client.auth包,在下文中一共展示了ApiKeyAuth类的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: setApiKey

import io.swagger.client.auth.ApiKeyAuth; //导入依赖的package包/类
/**
 * Helper method to set API key value for the first API key authentication.
 */
public void setApiKey(String apiKey) {
  for (Authentication auth : authentications.values()) {
    if (auth instanceof ApiKeyAuth) {
      ((ApiKeyAuth) auth).setApiKey(apiKey);
      return;
    }
  }
  throw new RuntimeException("No API key authentication configured!");
}
 
开发者ID:wondenge,项目名称:payments-Android-SDK,代码行数:13,代码来源:ApiInvoker.java

示例2: setApiKeyPrefix

import io.swagger.client.auth.ApiKeyAuth; //导入依赖的package包/类
/**
 * Helper method to set API key prefix for the first API key authentication.
 */
public void setApiKeyPrefix(String apiKeyPrefix) {
  for (Authentication auth : authentications.values()) {
    if (auth instanceof ApiKeyAuth) {
      ((ApiKeyAuth) auth).setApiKeyPrefix(apiKeyPrefix);
      return;
    }
  }
  throw new RuntimeException("No API key authentication configured!");
}
 
开发者ID:wondenge,项目名称:payments-Android-SDK,代码行数:13,代码来源:ApiInvoker.java

示例3: setAuth

import io.swagger.client.auth.ApiKeyAuth; //导入依赖的package包/类
private static boolean setAuth(String method) {
    if (method != null && !method.isEmpty()) {
        ApiKeyAuth auth = (ApiKeyAuth) client.getAuthentication(method);
        auth.setApiKey(dataProvider.getCurrentUserUid());
        return true;
    }

    return false;
}
 
开发者ID:WGPlaner,项目名称:wg_planer,代码行数:10,代码来源:ServerCalls.java

示例4: setApiKey

import io.swagger.client.auth.ApiKeyAuth; //导入依赖的package包/类
/**
 * Helper method to configure the first api key found
 * @param apiKey API key
 */
private void setApiKey(String apiKey) {
    for(Interceptor apiAuthorization : apiAuthorizations.values()) {
        if (apiAuthorization instanceof ApiKeyAuth) {
            ApiKeyAuth keyAuth = (ApiKeyAuth) apiAuthorization;
            keyAuth.setApiKey(apiKey);
            return;
        }
    }
}
 
开发者ID:amardeshbd,项目名称:medium-api-android-sample,代码行数:14,代码来源:ApiClient.java

示例5: setApiKey

import io.swagger.client.auth.ApiKeyAuth; //导入依赖的package包/类
/**
 * Helper method to set API key value for the first API key authentication.
 *
 * @param apiKey API key
 */
public void setApiKey(String apiKey) {
    for (Authentication auth : authentications.values()) {
        if (auth instanceof ApiKeyAuth) {
            ((ApiKeyAuth) auth).setApiKey(apiKey);
            return;
        }
    }
    throw new RuntimeException("No API key authentication configured!");
}
 
开发者ID:Tradeshift,项目名称:tradeshift-platform-sdk,代码行数:15,代码来源:ApiClient.java

示例6: setApiKeyPrefix

import io.swagger.client.auth.ApiKeyAuth; //导入依赖的package包/类
/**
 * Helper method to set API key prefix for the first API key authentication.
 *
 * @param apiKeyPrefix API key prefix
 */
public void setApiKeyPrefix(String apiKeyPrefix) {
    for (Authentication auth : authentications.values()) {
        if (auth instanceof ApiKeyAuth) {
            ((ApiKeyAuth) auth).setApiKeyPrefix(apiKeyPrefix);
            return;
        }
    }
    throw new RuntimeException("No API key authentication configured!");
}
 
开发者ID:Tradeshift,项目名称:tradeshift-platform-sdk,代码行数:15,代码来源:ApiClient.java

示例7: initializeInstance

import io.swagger.client.auth.ApiKeyAuth; //导入依赖的package包/类
public static void initializeInstance(Cache cache, Network network, int threadPoolSize, ResponseDelivery delivery, int connectionTimeout) {
   INSTANCE = new ApiInvoker(cache, network, threadPoolSize, delivery, connectionTimeout);
   setUserAgent("Swagger-Codegen/1.0.0/android");

   // Setup authentications (key: authentication name, value: authentication).
   INSTANCE.authentications = new HashMap<String, Authentication>();
   INSTANCE.authentications.put("Bearer", new ApiKeyAuth("header", "Authorization"));
   // Prevent the authentications from being modified.
   INSTANCE.authentications = Collections.unmodifiableMap(INSTANCE.authentications);
}
 
开发者ID:eurofurence,项目名称:ef-app_android,代码行数:11,代码来源:ApiInvoker.java

示例8: setApiKey

import io.swagger.client.auth.ApiKeyAuth; //导入依赖的package包/类
/**
* Helper method to set API key value for the first API key authentication.
*/
public void setApiKey(String apiKey) {
  for (Authentication auth : authentications.values()) {
    if (auth instanceof ApiKeyAuth) {
      ((ApiKeyAuth) auth).setApiKey(apiKey);
      return;
    }
  }
  throw new RuntimeException("No API key authentication configured!");
}
 
开发者ID:eurofurence,项目名称:ef-app_android,代码行数:13,代码来源:ApiInvoker.java

示例9: setApiKeyPrefix

import io.swagger.client.auth.ApiKeyAuth; //导入依赖的package包/类
/**
* Helper method to set API key prefix for the first API key authentication.
*/
public void setApiKeyPrefix(String apiKeyPrefix) {
  for (Authentication auth : authentications.values()) {
    if (auth instanceof ApiKeyAuth) {
      ((ApiKeyAuth) auth).setApiKeyPrefix(apiKeyPrefix);
      return;
    }
  }
  throw new RuntimeException("No API key authentication configured!");
}
 
开发者ID:eurofurence,项目名称:ef-app_android,代码行数:13,代码来源:ApiInvoker.java

示例10: ApiClient

import io.swagger.client.auth.ApiKeyAuth; //导入依赖的package包/类
public ApiClient() {
    httpClient = new OkHttpClient();


    verifyingSsl = true;

    json = new JSON(this);

    /*
     * Use RFC3339 format for date and datetime.
     * See http://xml2rfc.ietf.org/public/rfc/html/rfc3339.html#anchor14
     */
    this.dateFormat = new SimpleDateFormat("yyyy-MM-dd");
    // Always use UTC as the default time zone when dealing with date (without time).
    this.dateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
    initDatetimeFormat();

    // Be lenient on datetime formats when parsing datetime from string.
    // See <code>parseDatetime</code>.
    this.lenientDatetimeFormat = true;

    // Set default User-Agent.
    setUserAgent("Swagger-Codegen/1.0.0/java");

    // Setup authentications (key: authentication name, value: authentication).
    authentications = new HashMap<String, Authentication>();
    authentications.put("access-token", new ApiKeyAuth("header", "access-token"));
    authentications.put("client-id", new ApiKeyAuth("header", "client-id"));
    authentications.put("merchant-id", new ApiKeyAuth("header", "merchant-id"));
    // Prevent the authentications from being modified.
    authentications = Collections.unmodifiableMap(authentications);
}
 
开发者ID:DeveloperCielo,项目名称:LIO-SDK-API-Integracao-Remota-v1-Java,代码行数:33,代码来源:ApiClient.java

示例11: createClient

import io.swagger.client.auth.ApiKeyAuth; //导入依赖的package包/类
public static LuckyCaloriesApi createClient(String access_token){
    Gson gson = new GsonBuilder()
            .setDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ")
            .create();

    //String baseUrl = "http://localhost:4003/api/v1";
    String baseUrl = "http://10.0.2.2:4003/api/v1"; //from emulator to host computer (localhost)
    if(!baseUrl.endsWith("/"))
        baseUrl = baseUrl + "/";


    OkHttpClient.Builder okHttpBuilder = new OkHttpClient.Builder();

    if(access_token != null){
        ApiKeyAuth authInterceptor = new ApiKeyAuth("header", "access_token");
        authInterceptor.setApiKey(access_token);

        okHttpBuilder.addInterceptor(authInterceptor);
    }

    Retrofit retrofit = new Retrofit
            .Builder()
            .baseUrl(baseUrl)
            .client(okHttpBuilder.build())
            .addConverterFactory(ScalarsConverterFactory.create())
            .addConverterFactory(GsonCustomConverterFactory.create(gson))
            .build();

    return retrofit.create(LuckyCaloriesApi.class);
}
 
开发者ID:hardsky,项目名称:lucky-calories,代码行数:31,代码来源:LuckyCaloriesApiClient.java

示例12: setApiKey

import io.swagger.client.auth.ApiKeyAuth; //导入依赖的package包/类
/**
 * Helper method to configure the first api key found
 * @param apiKey
 */
private void setApiKey(String apiKey) {
    for(Interceptor apiAuthorization : apiAuthorizations.values()) {
        if (apiAuthorization instanceof ApiKeyAuth) {
            ApiKeyAuth keyAuth = (ApiKeyAuth) apiAuthorization;
            keyAuth.setApiKey(apiKey);
            return;
        }
    }
}
 
开发者ID:hardsky,项目名称:lucky-calories,代码行数:14,代码来源:ApiClient.java


注:本文中的io.swagger.client.auth.ApiKeyAuth类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。