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

com.tangosol.coherence.management.internal.ClusterNameSupplier Maven / Gradle / Ivy

/*
 * Copyright (c) 2000, 2020, Oracle and/or its affiliates.
 *
 * Licensed under the Universal Permissive License v 1.0 as shown at
 * http://oss.oracle.com/licenses/upl.
 */
package com.tangosol.coherence.management.internal;

import org.glassfish.jersey.internal.inject.AbstractBinder;
import org.glassfish.jersey.process.internal.RequestScoped;

import java.util.Set;
import java.util.function.Supplier;

/**
 * A supplier of sets of cluster names.
 * 

* This class is used when management over ReST is deployed * in a multi-cluster environment, for example WebLogic. * * @author jk 2019.05.30 */ @FunctionalInterface public interface ClusterNameSupplier extends Supplier> { /** * An {@link AbstractBinder} to bind a {@link ClusterNameSupplier} * to a resource. */ class Binder extends AbstractBinder { public Binder(ClusterNameSupplier supplier) { f_supplier = supplier; } @Override protected void configure() { bindFactory(new Supplier() { @RequestScoped public ClusterNameSupplier get() { return f_supplier; } }) .to(ClusterNameSupplier.class); } private final ClusterNameSupplier f_supplier; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy