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


Java HttpBasicAuth类代码示例

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


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

示例1: setUsername

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

示例2: setPassword

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

示例3: initializeInstance

import io.swagger.client.auth.HttpBasicAuth; //导入依赖的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("jenkins_auth", new HttpBasicAuth());
  // Prevent the authentications from being modified.
  INSTANCE.authentications = Collections.unmodifiableMap(INSTANCE.authentications);
}
 
开发者ID:cliffano,项目名称:swaggy-jenkins,代码行数:11,代码来源:ApiInvoker.java

示例4: setCredentials

import io.swagger.client.auth.HttpBasicAuth; //导入依赖的package包/类
/**
 * Helper method to configure the username/password for basic auth or password oauth
 * @param username Username
 * @param password Password
 */
private void setCredentials(String username, String password) {
    for(Interceptor apiAuthorization : apiAuthorizations.values()) {
        if (apiAuthorization instanceof HttpBasicAuth) {
            HttpBasicAuth basicAuth = (HttpBasicAuth) apiAuthorization;
            basicAuth.setCredentials(username, password);
            return;
        }
        if (apiAuthorization instanceof OAuth) {
            OAuth oauth = (OAuth) apiAuthorization;
            oauth.getTokenRequestBuilder().setUsername(username).setPassword(password);
            return;
        }
    }
}
 
开发者ID:amardeshbd,项目名称:medium-api-android-sample,代码行数:20,代码来源:ApiClient.java

示例5: setUsername

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

示例6: setPassword

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

示例7: setUsername

import io.swagger.client.auth.HttpBasicAuth; //导入依赖的package包/类
/**
 * Helper method to set username for the first HTTP basic authentication.
 */
public void setUsername(String username) {
  for (Authentication auth : authentications.values()) {
    if (auth instanceof HttpBasicAuth) {
      ((HttpBasicAuth) auth).setUsername(username);
      return;
    }
  }
  throw new RuntimeException("No HTTP basic authentication configured!");
}
 
开发者ID:normalian,项目名称:BotDirectlineApp-Java,代码行数:13,代码来源:ApiClient.java

示例8: setPassword

import io.swagger.client.auth.HttpBasicAuth; //导入依赖的package包/类
/**
 * Helper method to set password for the first HTTP basic authentication.
 */
public void setPassword(String password) {
  for (Authentication auth : authentications.values()) {
    if (auth instanceof HttpBasicAuth) {
      ((HttpBasicAuth) auth).setPassword(password);
      return;
    }
  }
  throw new RuntimeException("No HTTP basic authentication configured!");
}
 
开发者ID:normalian,项目名称:BotDirectlineApp-Java,代码行数:13,代码来源:ApiClient.java

示例9: setUsername

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

示例10: setPassword

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

示例11: setCredentials

import io.swagger.client.auth.HttpBasicAuth; //导入依赖的package包/类
/**
 * Helper method to configure the username/password for basic auth or password oauth
 * @param username
 * @param password
 */
private void setCredentials(String username, String password) {
    for(Interceptor apiAuthorization : apiAuthorizations.values()) {
        if (apiAuthorization instanceof HttpBasicAuth) {
            HttpBasicAuth basicAuth = (HttpBasicAuth) apiAuthorization;
            basicAuth.setCredentials(username, password);
            return;
        }
        if (apiAuthorization instanceof OAuth) {
            OAuth oauth = (OAuth) apiAuthorization;
            oauth.getTokenRequestBuilder().setUsername(username).setPassword(password);
            return;
        }
    }
}
 
开发者ID:hardsky,项目名称:lucky-calories,代码行数:20,代码来源:ApiClient.java


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