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

com.cleeng.api.CleengFactory Maven / Gradle / Ivy

package com.cleeng.api;

/**
 * Factory to create {@link Cleeng} instances to interact with Cleeng production
 * and sandbox plarforms.
 * 
 */
public class CleengFactory {

	public static Cleeng createSandboxApi(String publisherToken) {
		return new CleengBuilder(publisherToken)
				.setUseNonBlockingMode(1)
				.setUseSandbox(true)
				.build();
	}

	public static Cleeng createProductionApi(String publisherToken) {
		return new CleengBuilder(publisherToken)
				.setUseNonBlockingMode(1)
				.build();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy