All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.gravitee.am.common.event.Event Maven / Gradle / Ivy

There is a newer version: 4.6.0-alpha.2
Show newest version
/**
 * Copyright (C) 2015 The Gravitee team (http://gravitee.io)
 *
 * Licensed 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 io.gravitee.am.common.event;

/**
 * @author Titouan COMPIEGNE (titouan.compiegne at graviteesource.com)
 * @author GraviteeSource Team
 */
public abstract class Event {

    public static Enum valueOf(Type type, Action action) {
        Enum event1 = null;
        switch (type) {
            case DOMAIN:
                event1 =  DomainEvent.actionOf(action);
                break;
            case APPLICATION:
                event1 =  ApplicationEvent.actionOf(action);
                break;
            case CERTIFICATE:
                event1 =  CertificateEvent.actionOf(action);
                break;
            case EXTENSION_GRANT:
                event1 =  ExtensionGrantEvent.actionOf(action);
                break;
            case IDENTITY_PROVIDER:
                event1 =  IdentityProviderEvent.actionOf(action);
                break;
            case ROLE:
                event1 =  RoleEvent.actionOf(action);
                break;
            case SCOPE:
                event1 =  ScopeEvent.actionOf(action);
                break;
            case FORM:
                event1 =  FormEvent.actionOf(action);
                break;
            case EMAIL:
                event1 =  EmailEvent.actionOf(action);
                break;
            case REPORTER:
                event1 =  ReporterEvent.actionOf(action);
                break;
            case POLICY:
                event1 =  PolicyEvent.actionOf(action);
                break;
            case USER:
                event1 =  UserEvent.actionOf(action);
                break;
            case GROUP:
                event1 =  GroupEvent.actionOf(action);
                break;
            case MEMBERSHIP:
                event1 =  MembershipEvent.actionOf(action);
                break;
            case FACTOR:
                event1 =  FactorEvent.actionOf(action);
                break;
        }

        return event1;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy