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

com.google.gerrit.extensions.registration.Extension Maven / Gradle / Ivy

There is a newer version: 3.10.0-rc4
Show newest version
// Copyright (C) 2018 The Android Open Source Project
//
// 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 com.google.gerrit.extensions.registration;

import com.google.gerrit.common.Nullable;
import com.google.inject.Provider;

/**
 * An extension that is provided by a plugin.
 *
 * 

Contains the name of the plugin that provides the extension, the extension point * implementation and optionally the export name under which the extension was exported. * *

An export name is only available if this extension is an entry in a {@link DynamicMap}. * * @param Type of extension point that this extension implements */ public class Extension { private final String pluginName; private final @Nullable String exportName; private final Provider provider; protected Extension(String pluginName, Provider provider) { this(pluginName, null, provider); } protected Extension(String pluginName, @Nullable String exportName, Provider provider) { this.pluginName = pluginName; this.exportName = exportName; this.provider = provider; } public String getPluginName() { return pluginName; } @Nullable public String getExportName() { return exportName; } public Provider getProvider() { return provider; } public T get() { return provider.get(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy