forked from Hithomelabs/CFTunnels
58 lines
1.6 KiB
Java
58 lines
1.6 KiB
Java
package com.hithomelabs.CFTunnels.Config;
|
|
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
/**
|
|
* Configuration class for Cloudflare API credentials.
|
|
*
|
|
* <p>Loads Cloudflare configuration from application properties
|
|
* using the {@code cloudflare.*} prefix.</p>
|
|
*
|
|
* <p><b>Example configuration in application.properties:</b></p>
|
|
* <pre>
|
|
* cloudflare.account-id=your-account-id
|
|
* cloudflare.api-key=your-api-key
|
|
* cloudflare.email=your@email.com
|
|
* </pre>
|
|
*
|
|
* @see <a href="https://api.cloudflare.com/">Cloudflare API Documentation</a>
|
|
*/
|
|
@Configuration
|
|
@ConfigurationProperties(prefix = "cloudflare")
|
|
public class CloudflareConfig {
|
|
|
|
/**
|
|
* Cloudflare account ID.
|
|
*
|
|
* <p>Found in the Cloudflare Dashboard under
|
|
* Overview > Account ID</p>
|
|
*/
|
|
private String accountId;
|
|
|
|
/**
|
|
* Cloudflare API Key.
|
|
*
|
|
* <p>Generated in Cloudflare Dashboard under
|
|
* Profile > API Tokens > Global API Key</p>
|
|
*/
|
|
private String apiKey;
|
|
|
|
/**
|
|
* Cloudflare account email.
|
|
*
|
|
* <p>The email address associated with your
|
|
* Cloudflare account.</p>
|
|
*/
|
|
private String email;
|
|
|
|
// Getters and Setters
|
|
public String getAccountId() { return accountId; }
|
|
public void setAccountId(String accountId) { this.accountId = accountId; }
|
|
|
|
public String getApiKey() { return apiKey; }
|
|
public void setApiKey(String apiKey) { this.apiKey = apiKey; }
|
|
|
|
public String getEmail() { return email; }
|
|
public void setEmail(String email) { this.email = email; }
|
|
} |