blob: 05844d0ad0674167ef4efb0b5351deb2259ab30d [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.ignite.internal.eventlog.api;
import java.util.Arrays;
import org.apache.ignite.internal.eventlog.event.EventTypeRegistry;
/**
* Defines a subset of event types that can be created in the system. Note, the event type is a string that is unique within the system. The
* event type is used to filter the events in the event log.
*/
public enum IgniteEventType {
USER_AUTHENTICATED,
CONNECTION_CLOSED;
static {
// Without the following line, the IgniteEventType enum will not be registered in the EventTypeRegistry
// and the EventTypeRegistry will not be able to validate the event types.
Arrays.stream(values()).forEach(type -> EventTypeRegistry.register(type.name()));
}
}