22 lines
446 B
Java
22 lines
446 B
Java
package routines.system;
|
|
|
|
/**
|
|
* store some global constant
|
|
*
|
|
* @author Administrator
|
|
*
|
|
*/
|
|
public abstract class Constant {
|
|
|
|
/**
|
|
* the default pattern for date parse and format
|
|
*/
|
|
public static final String dateDefaultPattern = "dd-MM-yyyy";
|
|
|
|
/**
|
|
* the default user agent string for AWS components
|
|
*/
|
|
public static final String TALEND_USER_AGENT = "APN/1.0 Talend/6.4 Studio/6.4";
|
|
|
|
}
|