forked from oneteme/inspect-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bcbd193
commit 966064d
Showing
12 changed files
with
221 additions
and
231 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
src/main/java/org/usf/trace/api/server/config/DbFields.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
package org.usf.trace.api.server.config; | ||
|
||
|
||
|
||
public class DbFields { | ||
public static final String ID_SES = "id_ses"; | ||
public static final String CD_API = "cd_api"; | ||
public static final String CD_SES = "cd_ses"; | ||
public static final String CD_OUT_QRY = "cd_out_qry"; | ||
public static final String ID_OUT_QRY = "id_out_qry"; | ||
public static final String VA_MTH = "va_mth"; | ||
public static final String VA_PRTCL = "va_prtcl"; | ||
public static final String VA_HST = "va_hst"; | ||
public static final String CD_PRT = "cd_prt"; | ||
public static final String VA_PTH = "va_pth"; | ||
public static final String VA_QRY = "va_qry"; | ||
public static final String VA_CNT_TYP = "va_cnt_typ"; | ||
public static final String VA_AUTH = "va_auth"; | ||
public static final String CD_STT = "cd_stt"; | ||
public static final String VA_I_SZE = "va_i_sze"; | ||
public static final String VA_O_SZE = "va_o_sze"; | ||
public static final String VA_NAME = "va_name"; | ||
public static final String DH_DBT = "dh_dbt"; | ||
public static final String DH_FIN = "dh_fin"; | ||
public static final String VA_USR = "va_usr"; | ||
public static final String VA_OS = "va_os"; | ||
public static final String VA_RE = "va_re"; | ||
public static final String LNCH = "lnch"; | ||
public static final String LOC = "loc"; | ||
public static final String VA_THRED = "va_thred"; | ||
public static final String VA_API_NME = "va_api_nme"; | ||
public static final String VA_APP_NME = "va_app_nme"; | ||
public static final String VA_VRS = "va_vrs"; | ||
public static final String VA_ADRS = "va_adrs"; | ||
public static final String VA_ENV = "va_env"; | ||
public static final String VA_DB = "va_db"; | ||
public static final String VA_DRV = "va_drv"; | ||
public static final String VA_DB_NME = "va_db_nme"; | ||
public static final String VA_DB_VRS = "va_db_vrs"; | ||
public static final String VA_CMD = "va_cmd"; | ||
public static final String VA_NME = "va_nme"; | ||
public static final String VA_CMPLT = "va_cmplt"; | ||
public static final String VA_TYP = "va_typ"; | ||
public static final String CD_COUNT = "cd_count"; | ||
public static final String VA_LOC = "va_loc"; | ||
public static final String VA_ERR_CLS = "va_err_cls"; | ||
public static final String VA_ERR_MSG = "va_err_msg"; | ||
|
||
private DbFields() { | ||
throw new IllegalStateException("Utility class"); | ||
} | ||
} |
Oops, something went wrong.