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

com.cleeng.api.examples.CleengJavaAPIExampleAsync Maven / Gradle / Ivy

Go to download

When you are building your website or application with Java, you can use the Cleeng Java SDK. It simplifies the use of the Cleeng API as it handles user login and content access, and deals with all JSON-RPC specific code.

There is a newer version: 2.8.2
Show newest version
package com.cleeng.api.examples;

import com.cleeng.api.domain.async.AsyncRequest;
import com.cleeng.api.AsyncRequestCallback;
import com.cleeng.api.Cleeng;
import com.cleeng.api.CleengFactory;
import com.cleeng.api.domain.OfferResponse;
import com.cleeng.api.domain.SubscriptionOfferData;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

class CleengJavaAPIExampleAsync {

    private static final Logger logger = LogManager.getLogger(CleengJavaAPIExampleAsync.class);

    public static void main(String args[]) throws Exception {

        String publisherToken = "IEiuf3fJzAorVvxgBYiHiHXGk8oFPckTMSOn8hS1--lOti30";
        Cleeng api = CleengFactory.createSandboxApi(publisherToken);

        final SubscriptionOfferData offerData = new SubscriptionOfferData(12.34,
                "week",
                "title",
                "http://www.someurl.com",
                "description",
                null,
                0,
                9,
                Arrays.asList("Sport"),
                true,
                "whitelist",
                Arrays.asList("PL", "DE")
        );

        final AsyncRequestCallback callback = new AsyncRequestCallback(OfferResponse.class);
        final List requests = new ArrayList();
        requests.add(new AsyncRequest(offerData, callback));

        api.createSubscriptionOfferAsync(requests);

        Thread.sleep(2000);

        logger.info("Done. Created offer id: " + callback.getResponse().result.id);

        System.exit(0);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy