This repository has been archived on 2025-12-25. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
tcommon-studio-se/main/plugins/org.talend.librariesmanager/resources/java/routines/system/Constant.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";
}