package com.khmelenko.lab.varis.common; /** * Application constant values * * @author Dmytro Khmelenko */ public final class Constants { // denied constructor private Constants() { } /** * URL for open source projects */ public static final String OPEN_SOURCE_TRAVIS_URL = "https://api.travis-ci.org"; /** * URL for private projects */ public static final String PRIVATE_TRAVIS_URL = "https://api.travis-ci.com"; /** * URL for Github access */ public static final String GITHUB_URL = "https://api.github.com"; }