You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.0 KiB
Java
34 lines
1.0 KiB
Java
package egovframework.com.cmm.service;
|
|
|
|
/**
|
|
* Class Name : Globals.java
|
|
* Description : 시스템 구동 시 프로퍼티를 통해 사용될 전역변수를 정의한다.
|
|
* Modification Information
|
|
*
|
|
* 수정일 수정자 수정내용
|
|
* ------- -------- ---------------------------
|
|
* 2009.01.19 박지욱 최초 생성
|
|
*
|
|
* @author 공통 서비스 개발팀 박지욱
|
|
* @since 2009. 01. 19
|
|
* @version 1.0
|
|
* @see
|
|
*
|
|
*/
|
|
|
|
public class Globals {
|
|
//Client정보 프로퍼티 위치
|
|
//public static final String CLIENT_CONF_PATH = EgovYmlProperties.getProperty("Globals.ClientConfPath");
|
|
|
|
//파일 업로드 원 파일명
|
|
public static final String ORIGIN_FILE_NM = "originalFileName";
|
|
//파일 확장자
|
|
public static final String FILE_EXT = "fileExtension";
|
|
//파일크기
|
|
public static final String FILE_SIZE = "fileSize";
|
|
//업로드된 파일명
|
|
public static final String UPLOAD_FILE_NM = "uploadFileName";
|
|
//파일경로
|
|
public static final String FILE_PATH = "filePath";
|
|
}
|