com.quartzdesk.api.ApiConst Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quartzdesk-api Show documentation
Show all versions of quartzdesk-api Show documentation
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.
/*
* 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" );
}