Example usage for org.springframework.vault.client VaultEndpoint setScheme

List of usage examples for org.springframework.vault.client VaultEndpoint setScheme

Introduction

In this page you can find the example usage for org.springframework.vault.client VaultEndpoint setScheme.

Prototype

public void setScheme(String scheme) 

Source Link

Usage

From source file:de.dominikschadow.configclient.VaultConfig.java

@Override
public VaultEndpoint vaultEndpoint() {
    VaultEndpoint vaultEndpoint = new VaultEndpoint();
    vaultEndpoint.setScheme("http");

    return vaultEndpoint;
}