You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
782 B
24 lines
782 B
export const fineServletURL = Dec.fineServletURL; |
|
export const ReqPath = '/v10/config/connection'; |
|
export const ReqPrefix = `${fineServletURL}${ReqPath}`; |
|
export const ImgPrefix = `${fineServletURL}/resources?path=/com/fr/web/resources/dist/images/2x/icon/database/`; |
|
export const PluginImgPrefix = `${fineServletURL}/resources?path=`; |
|
|
|
export const connectionType: { |
|
JDBC: string; |
|
JNDI: string; |
|
} = DecCst.Connect.ConnectionType; |
|
|
|
export const editStatusEvent: { |
|
OPEN: string; |
|
SHUTDOWN: string; |
|
} = DecCst.Connect.EditStatusEvent; |
|
|
|
export const errorCode: { |
|
CONNECTION_DELETED: string; |
|
CONNECTION_UNDER_EDIT: string; |
|
DUPLICATE_NAMES: string; |
|
LOGIN_INFO_NOT_AVAILABLE: string; |
|
LOGIN_INFO_ERROR: string; |
|
TIMEOUT: string; |
|
} = DecCst.ErrorCode;
|
|
|