io.gravitee.plugin.entrypoint.EntrypointConnectorPlugin Maven / Gradle / Ivy
/*
* 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.entrypoint;
import io.gravitee.gateway.reactive.api.connector.entrypoint.EntrypointConnectorConfiguration;
import io.gravitee.gateway.reactive.api.connector.entrypoint.EntrypointConnectorFactory;
import io.gravitee.plugin.core.api.ConfigurablePlugin;
/**
* Interface describing a plugin for {@link io.gravitee.gateway.reactive.api.connector.entrypoint.EntrypointConnector}
*
* @author Guillaume LAMIRAND (guillaume.lamirand at graviteesource.com)
* @author GraviteeSource Team
*/
public interface EntrypointConnectorPlugin, C extends EntrypointConnectorConfiguration>
extends ConfigurablePlugin {
String PLUGIN_TYPE = "entrypoint-connector";
/**
* @return the factory Class
used to create the associated connector
*/
Class connectorFactory();
@Override
default String type() {
return PLUGIN_TYPE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy