/* * Copyright 2014 Federal Chancellery Austria * MOA-ID has been developed in a cooperation between BRZ, the Federal * Chancellery Austria - ICT staff unit, and Graz University of Technology. * * Licensed under the EUPL, Version 1.1 or - as soon they will be approved by * the European Commission - subsequent versions of the EUPL (the "Licence"); * You may not use this work except in compliance with the Licence. * You may obtain a copy of the Licence at: * http://www.osor.eu/eupl/ * * Unless required by applicable law or agreed to in writing, software * distributed under the Licence is distributed on an "AS IS" basis, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the Licence for the specific language governing permissions and * limitations under the Licence. * * This product combines work with different licenses. See the "NOTICE" text * file for details on the various modules and licenses. * The "NOTICE" text file is part of the distribution. Any derivative works * that you distribute must include a readable copy of the "NOTICE" text file. */ package at.gv.egovernment.moa.id.advancedlogging; import at.gv.egiz.components.eventlog.api.EventConstants; import at.gv.egiz.eaaf.core.api.idp.auth.IAuthenticationManager; /** * @author tlenz * *Defines Constants for Event Logging * *Event codes from 3000 to 9999 can be defined here * */ public interface MOAIDEventConstants extends EventConstants { //auth protocol specific information public static final int AUTHPROTOCOL_PVP_REQUEST_AUTHRESPONSE = 3102; public static final int AUTHPROTOCOL_PVP_REQUEST_SLO = 3103; public static final int AUTHPROTOCOL_PVP_REQUEST_ATTRIBUTQUERY = 3104; public static final int AUTHPROTOCOL_OPENIDCONNECT_AUTHREQUEST = 3200; public static final int AUTHPROTOCOL_OPENIDCONNECT_TOKENREQUEST = 3201; public static final int AUTHPROTOCOL_SAML1_AUTHNREQUEST = 3300; public static final int AUTHPROCESS_IDP_SLO_REQUESTED = 4400; public static final int AUTHPROCESS_SLO_STARTED = 4401; public static final int AUTHPROCESS_SLO_ALL_VALID = 4402; public static final int AUTHPROCESS_SLO_NOT_ALL_VALID = 4403; //authentication process information public static final int AUTHPROCESS_START = IAuthenticationManager.EVENT_AUTHENTICATION_PROCESS_STARTED; public static final int AUTHPROCESS_FINISHED = IAuthenticationManager.EVENT_AUTHENTICATION_PROCESS_STARTED; //reservated //IAuthenticationManager.EVENT_AUTHENTICATION_PROCESS_ERROR; //IAuthenticationManager.EVENT_AUTHENTICATION_PROCESS_FOR_SP; public static final int AUTHPROCESS_MANDATES_REQUESTED = 4004; public static final int AUTHPROCESS_STORK_REQUESTED = 4005; public static final int AUTHPROCESS_SSO = 4006; public static final int AUTHPROCESS_SSO_INVALID = 4007; public static final int AUTHPROCESS_SSO_ASK_USER_START = 4008; public static final int AUTHPROCESS_SSO_ASK_USER_FINISHED = 4009; public static final int AUTHPROCESS_INTERFEDERATION = 4010; public static final int AUTHPROCESS_INTERFEDERATION_REVEIVED = 4011; public static final int AUTHPROCESS_INTERFEDERATION_IDP = 4012; public static final int AUTHPROCESS_SERVICEPROVIDER = 4013; public static final int AUTHPROCESS_BKUSELECTION_INIT = 4110; public static final int AUTHPROCESS_BKUTYPE_SELECTED = 4111; public static final int AUTHPROCESS_BKU_URL = 4112; public static final int AUTHPROCESS_BKU_DATAURL_IP = 4113; public static final int AUTHPROCESS_IDL_VALIDATED = 4220; public static final int AUTHPROCESS_CERTIFICATE_VALIDATED = 4221; public static final int AUTHPROCESS_AUTHBLOCK_VALIDATED = 4222; public static final int AUTHPROCESS_FOREIGN_FOUND = 4223; public static final int AUTHPROCESS_FOREIGN_SZRGW_CONNECTED = 4224; public static final int AUTHPROCESS_FOREIGN_SZRGW_RECEIVED = 4225; public static final int AUTHPROCESS_MANDATE_SERVICE_REQUESTED = 4300; public static final int AUTHPROCESS_MANDATE_REDIRECT = 4301; public static final int AUTHPROCESS_MANDATE_RECEIVED = 4302; public static final int AUTHPROCESS_PEPS_SELECTED = 6100; public static final int AUTHPROCESS_PEPS_REQUESTED = 6101; public static final int AUTHPROCESS_PEPS_RECEIVED = 6102; public static final int AUTHPROCESS_PEPS_RECEIVED_ERROR = 6103; public static final int AUTHPROCESS_PEPS_IDL_RECEIVED = 6104; public static final int AUTHPROCESS_EIDAS_AT_CONNECTOR_SELECTED = 6200; public static final int AUTHPROCESS_EIDAS_AT_CONNECTOR_REQUESTED = 6201; public static final int AUTHPROCESS_EIDAS_AT_CONNECTOR_RECEIVED = 6202; public static final int AUTHPROCESS_EIDAS_AT_CONNECTOR_RECEIVED_ERROR = 6203; public static final int AUTHPROCESS_EIDAS_AT_CONNECTOR_MDS_VALID = 6204; //person information public static final int PERSONAL_INFORMATION_PROF_REPRESENTATIVE_BPK = 5000; public static final int PERSONAL_INFORMATION_PROF_REPRESENTATIVE = 5001; public static final int PERSONAL_INFORMATION_USERNAME_HASH = 5002; public static final int PERSONAL_INFORMATION_MANDATE_TYPE = 5100; public static final int PERSONAL_INFORMATION_MANDATE_MANDATOR_TYPE = 5101; public static final int PERSONAL_INFORMATION_MANDATE_MANDATOR_HASH = 5102; public static final int PERSONAL_INFORMATION_MANDATE_MANDATOR_BASEID = 5103; //Attribute Provider [6000 --> 7900] public static final int AUTHPROCESS_ELGA_MANDATE_SERVICE_REQUESTED = 6000; public static final int AUTHPROCESS_ELGA_MANDATE_RECEIVED = 6001; public static final int AUTHPROCESS_ELGA_MANDATE_ERROR_RECEIVED = 6002; public static final int AUTHPROCESS_ELGA_MANDATE_RECEIVED_IP = 6003; public static final int AUTHPROCESS_ELGA_MANDATE_SERVICE_ENTITYID = 6004; }