All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.paypal.base.sdk.info.SDKVersionImpl Maven / Gradle / Ivy

There is a newer version: 1.14.0
Show 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.13.1";
	
	public String getSDKId() {
		return SDK_ID;	
	}
	
	public String getSDKVersion() {
		return SDK_VERSION;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy