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

com.contentful.java.cda.Constants Maven / Gradle / Ivy

There is a newer version: 9.1.0
Show newest version
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