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


Java RedisURI.getPassword方法代码示例

本文整理汇总了Java中com.lambdaworks.redis.RedisURI.getPassword方法的典型用法代码示例。如果您正苦于以下问题:Java RedisURI.getPassword方法的具体用法?Java RedisURI.getPassword怎么用?Java RedisURI.getPassword使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.lambdaworks.redis.RedisURI的用法示例。


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

示例1: RedisMasterSlaveNode

import com.lambdaworks.redis.RedisURI; //导入方法依赖的package包/类
RedisMasterSlaveNode(String host, int port, RedisURI seed, Role role) {

        RedisURI.Builder builder = RedisURI.Builder
                .redis(host, port)
                .withSsl(seed.isSsl())
                .withVerifyPeer(seed.isVerifyPeer())
                .withStartTls(seed.isStartTls());
        if (seed.getPassword() != null && seed.getPassword().length != 0) {
            builder.withPassword(new String(seed.getPassword()));
        }

        if (seed.getClientName() != null) {
            builder.withClientName(seed.getClientName());
        }

        builder.withDatabase(seed.getDatabase());

        this.redisURI = builder.build();
        this.role = role;
    }
 
开发者ID:lettuce-io,项目名称:lettuce-core,代码行数:21,代码来源:RedisMasterSlaveNode.java

示例2: addPasswordIfNeeded

import com.lambdaworks.redis.RedisURI; //导入方法依赖的package包/类
private void addPasswordIfNeeded(List<RedisNodeDescription> nodes, RedisURI seed) {

        if (seed.getPassword() != null && seed.getPassword().length != 0) {
            for (RedisNodeDescription node : nodes) {
                node.getUri().setPassword(new String(seed.getPassword()));
            }
        }
    }
 
开发者ID:lettuce-io,项目名称:lettuce-core,代码行数:9,代码来源:MasterSlaveTopologyRefresh.java

示例3: applyUriConnectionSettings

import com.lambdaworks.redis.RedisURI; //导入方法依赖的package包/类
/**
 * Apply {@link RedisURI} settings such as SSL/Timeout/password.
 *
 * @param from from {@link RedisURI}.
 * @param to from {@link RedisURI}.
 */
static void applyUriConnectionSettings(RedisURI from, RedisURI to) {

    if (from.getPassword() != null && from.getPassword().length != 0) {
        to.setPassword(new String(from.getPassword()));
    }

    to.setTimeout(from.getTimeout());
    to.setUnit(from.getUnit());
    to.setSsl(from.isSsl());
    to.setStartTls(from.isStartTls());
    to.setVerifyPeer(from.isVerifyPeer());
}
 
开发者ID:lettuce-io,项目名称:lettuce-core,代码行数:19,代码来源:RedisClusterURIUtil.java


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