com.paypal.base.sdk.info.SDKVersionImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.commerce.payment.method.paypal
Show all versions of com.liferay.commerce.payment.method.paypal
Liferay Commerce Payment Method PayPal
The newest version!
package com.paypal.base.sdk.info;
import com.paypal.base.SDKVersion;
/**
* Implementation of SDKVersion
*/
public class SDKVersionImpl implements SDKVersion {
/**
* SDK ID used in User-Agent HTTP header
*/
private static final String SDK_ID = "PayPal-Java-SDK";
/**
* SDK Version used in User-Agent HTTP header
*/
private static final String SDK_VERSION = "1.14.0";
public String getSDKId() {
return SDK_ID;
}
public String getSDKVersion() {
return SDK_VERSION;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy