
com.contentful.java.cda.Constants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java SDK for Contentful's Content Delivery API.
package com.contentful.java.cda;
import java.util.Locale;
/**
* This class holds specific constants, used throughout the sdk, not accessible by mere mortals.
*/
class Constants {
static final Locale LOCALE = Locale.US;
static final String SCHEME = "https";
static final String ENDPOINT_PREVIEW = SCHEME + "://preview.contentful.com/";
static final String ENDPOINT_PROD = SCHEME + "://cdn.contentful.com/";
static final String PATH_ASSETS = "assets";
static final String PATH_CONTENT_TYPES = "content_types";
static final String PATH_ENTRIES = "entries";
static final String PATH_LOCALES = "locales";
static final String PATH_TAGS = "tags";
static final String DEFAULT_ENVIRONMENT = "master";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy