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

io.gravitee.plugin.notifier.internal.NotifierPluginImpl Maven / Gradle / Ivy

The newest version!
/*
 * Copyright © 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.plugin.notifier.internal;

import io.gravitee.notifier.api.NotifierConfiguration;
import io.gravitee.plugin.core.api.Plugin;
import io.gravitee.plugin.core.api.PluginManifest;
import io.gravitee.plugin.notifier.NotifierPlugin;
import java.net.URL;
import java.nio.file.Path;

/**
 * @author David BRASSELY (david.brassely at graviteesource.com)
 * @author GraviteeSource Team
 */
class NotifierPluginImpl implements NotifierPlugin {

    private final Plugin plugin;
    private final Class notifierClass;
    private Class notifierConfigurationClass;

    NotifierPluginImpl(final Plugin plugin, final Class notifierClass) {
        this.plugin = plugin;
        this.notifierClass = notifierClass;
    }

    @Override
    public Class notifier() {
        return notifierClass;
    }

    @Override
    public String clazz() {
        return plugin.clazz();
    }

    @Override
    public URL[] dependencies() {
        return plugin.dependencies();
    }

    @Override
    public String id() {
        return plugin.id();
    }

    @Override
    public PluginManifest manifest() {
        return plugin.manifest();
    }

    @Override
    public Path path() {
        return plugin.path();
    }

    @Override
    public boolean deployed() {
        return plugin.deployed();
    }

    @Override
    public Class configuration() {
        return notifierConfigurationClass;
    }

    public void setConfiguration(Class notifierConfigurationClass) {
        this.notifierConfigurationClass = notifierConfigurationClass;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy