Kenmegne
7 days ago 23a46b4be35277e06ec89f48730eeb694e686be8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
 * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
 * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
 */
package com.megatim.fdxcommons.model.camel;
 
/**
 *
 * @author ASUS
 */
public class CamelProperties {
 
    public static String ERROR_DIR = "error";
 
    public static String STANDALONE_TMP_DIR_PROPERTY = "fdx.api.integration-standalone-temp-dir";
    public static String CONSULTATION_TMP_DIR = "fdx.api.integration-consultation-temp-dir";
 
    public static String REFERENTIEL_LOCAL_PATH_PROPERTY = "fdx.api.referentiel-integration-local-path";
    public static String FICHIER_LOCAL_PATH_PROPERTY = "fdx.api.fichier-integration-local-path";
    public static String STANDALONE_DESTINATION_DIR_PROPERTY = "fdx.api.integration-standalone-destination-dir";
    public static String CONSULTATION_DESTINATION_DIR_PROPERTY = "fdx.api.integration-consultation-destination-dir";
 
    public static String REFERENTIEL_REMOTE_PATH_PROPERTY = "fdx.api.referentiel-integration-remote-path";
    public static String FICHIER_REMOTE_PATH_PROPERTY = "fdx.api.fichier-integration-remote-path";
    public static String STANDALONE_REMOTE_DIR_PROPERTY = "fdx.integration-standalone-remote";
    public static String CONSULTATION_REMOTE_DIR_PROPERTY = "fdx.integration-consultation-remote";
 
    public static String STANDALONE_USER_NAME = "fdx.integration-standalone-username";
    public static String STANDALONE_PASSWORD = "fdx.integration-standalone-password";
    public static String STANDALONE_HOST_NAME = "fdx.integration-standalone-hostname";
    public static String STANDALONE_PORT = "fdx.integration-standalone-port";
    public static String CONSULTATION_USER_NAME = "fdx.integration-consultation-username";
    public static String CONSULTATION_PASSWORD = "fdx.integration-consultation-password";
    public static String CONSULTATION_HOST_NAME = "fdx.integration-consultation-hostname";
    public static String CONSULTATION_PORT = "fdx.integration-consultation-port";
 
}