31 lines
1.0 KiB
Java
31 lines
1.0 KiB
Java
package it.valueteam.gnp.obj;
|
|
|
|
public class ActionLogMapping {
|
|
|
|
//M2M
|
|
public static int InvioFileXml = 1001;
|
|
public static int RicezioneFileXml = 1002;
|
|
public static int InvioNotificaInfobus = 1003;
|
|
public static int RicezioneNotificaInfobus = 1004;
|
|
public static int InvioFileSFTP = 1005;
|
|
public static int NotificheRichiesteDonorDBCGO = 1006;
|
|
public static int NotificheRichiesteRecipientDBCGO = 1007;
|
|
public static int NotificheRichiestePortingDBCGO = 1008;
|
|
public static int ModificaPercentualeBUDonor = 1009;
|
|
public static int ModificaMovimentazioneRecipient = 1010;
|
|
public static int ModificaPrioritaRichiesta = 1011;
|
|
|
|
//log security
|
|
public static final String LOG_RESULT_CODE_OK = "OK";
|
|
public static final String LOG_RESULT_CODE_KO = "KO";
|
|
public static final int LOG_RESULT_CODE_DETAIL_OK = 0;
|
|
public static final int LOG_RESULT_CODE_DETAIL_KO = -1;
|
|
|
|
//LOV
|
|
public static final String LOV_LOG_ACTION = "LOG_ACTION";
|
|
public static final String LOV_LOG_RETURN_CODE = "LOG_RETURN_CODE";
|
|
|
|
private ActionLogMapping() {};
|
|
|
|
}
|