First Commit - Source Code from Reply

This commit is contained in:
vincenzofariello
2024-05-13 12:54:14 +02:00
parent 73e32a5020
commit a15aee1f08
11184 changed files with 1065913 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
package mnp.securityLog;
public class ActionLogMapping {
// log Machine2Machine
public static final int InvioFileXML = 1001;
public static final int RicezioneFileXML = 1002;
public static final int AbilitazioneGateway = 1003;
//log security
public static final String LOG_CLIENT_APP_NAME = "MNP-GW";
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;
private ActionLogMapping() {};
}