com.bitpay.sdk.ConfigFilePath Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bitpay_sdk Show documentation
Show all versions of bitpay_sdk Show documentation
Full implementation of the BitPay Payment Gateway. This library implements BitPay's Cryptographically
Secure RESTful API.
/*
* Copyright (c) 2019 BitPay.
* All rights reserved.
*/
package com.bitpay.sdk;
/**
* The type Config file path.
*/
public class ConfigFilePath {
private final String value;
/**
* Instantiates a new Config file path.
*
* @param configFilePath the configFilePath
*/
public ConfigFilePath(final String configFilePath) {
this.value = configFilePath;
}
/**
* Value of config file path.
*
* @return the string
*/
public String value() {
return this.value;
}
}