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

com.quartzdesk.api.ApiConst Maven / Gradle / Ivy

Go to download

QuartzDesk Public API library required for QuartzDesk Standard and Enterprise edition installations. This library must be placed on the classpath of the Quartz scheduler based application that is managed by QuartzDesk. It is important that this library is loaded by the same classloader that loads the Quartz scheduler API used by the application.

There is a newer version: 5.0.3
Show newest version
/*
 * Copyright (c) 2013-2019 QuartzDesk.com. All Rights Reserved.
 * QuartzDesk.com PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 */

package com.quartzdesk.api;

import java.util.TimeZone;

/**
 * Various commonly used constants throughout the API.
 */
public interface ApiConst
{
  /**
   * ISO-8859-1 (Latin1) encoding.
   */
  String ENCODING_ISO_8859_1 = "ISO-8859-1";
  /**
   * UTF-8 encoding.
   */
  String ENCODING_UTF8 = "UTF-8";
  /**
   * Platform dependent new line separator.
   */
  String NL = System.getProperty( "line.separator" );
  /**
   * UTC time-zone.
   */
  TimeZone TIME_ZONE_UTC = TimeZone.getTimeZone( "UTC" );
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy