com.icoderman.woocommerce.WooCommerceConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wc-api-java Show documentation
Show all versions of wc-api-java Show documentation
Java wrapper for WooCommerce REST API
package com.icoderman.woocommerce;
public final class WooCommerceConfig {
private final String url;
private final String consumerKey;
private final String consumerSecret;
public WooCommerceConfig(String url, String consumerKey, String consumerSecret) {
this.url = url;
this.consumerKey = consumerKey;
this.consumerSecret = consumerSecret;
}
public String getUrl() {
return url;
}
public String getConsumerKey() {
return consumerKey;
}
public String getConsumerSecret() {
return consumerSecret;
}
}