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

com.github.revenuemonster.Environment Maven / Gradle / Ivy

Go to download

This is an Java SDK that maps some of the RESTful methods of Open API that are documented at doc.revenuemonster.my

The newest version!
package com.github.revenuemonster;

import com.github.revenuemonster.env.env;

public class Environment {
    public void setEnvironment(String clientId,String clientSecret,String environment){
        env.clientId = clientId;
        env.clientSecret = clientSecret;
        env.environment = environment;
    }

    public void setAccessToken(String accessToken){
        env.accessToken = accessToken;
    }

    public void setRefreshToken(String refreshToken){
        env.refreshToken = refreshToken;
    }

    public void setPrivateKey(String privateKey){
        env.privateKey = privateKey;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy