/* * 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"; }