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

com.versionone.apiclient.Urls Maven / Gradle / Ivy

Go to download

A library for custom Java development against the VersionOne Development Platform's REST API.

There is a newer version: 16.1.3
Show newest version
package com.versionone.apiclient;

import java.io.IOException;

import com.versionone.apiclient.interfaces.IAPIConfiguration;
import com.versionone.apiclient.interfaces.IUrls;

/**
 * @deprecated This class has been deprecated. Please use V1Connector instead. 
 */
@Deprecated
public final class Urls implements IUrls {

    private IAPIConfiguration _config;

    public Urls() throws IOException {
        _config = new APIConfiguration();
    }

    public String getV1Url(){
        return _config.getV1Url();
    }
    public String getMetaUrl(){
        return _config.getMetaUrl();
    }
    public String getDataUrl(){
        return _config.getDataUrl();
    }
    public String getConfigUrl(){
        return _config.getConfigUrl();
    }
    public String getProxyUrl() {
        return _config.getProxyUrl();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy